diff options
Diffstat (limited to 'tests/ui/resolve/missing-in-namespace.rs')
-rw-r--r-- | tests/ui/resolve/missing-in-namespace.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/ui/resolve/missing-in-namespace.rs b/tests/ui/resolve/missing-in-namespace.rs new file mode 100644 index 000000000..e1dedb072 --- /dev/null +++ b/tests/ui/resolve/missing-in-namespace.rs @@ -0,0 +1,4 @@ +fn main() { + let _map = std::hahmap::HashMap::new(); + //~^ ERROR failed to resolve: could not find `hahmap` in `std +} |