Skip to content

Commit e8ba94e

Browse files
authored
Merge pull request #2132 from rust-lang/ehuss-patch-1
Add missing semicolon to ambiguity.glob-vs-glob
2 parents c43366c + bc4a11c commit e8ba94e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/names/name-resolution.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ const _: () = {
170170
// The error happens when the name with the conflicting candidates
171171
// is used.
172172
let x = Ambig; // ERROR: `Ambig` is ambiguous.
173-
}
173+
};
174174
```
175175

176176
```rust,no_run

0 commit comments

Comments
 (0)