E4116#
Found hole _.
If you want to represent unfinished code, we recommend using ...
instead.
Using ...
allows the program to be compiled and run, while _
will cause a
compilation error.
错误示例#
fn main {
_ // Error: Found hole _
}
建议#
Use ...
instead:
fn main {
... // Warning: unfinished code
}