diff options
Diffstat (limited to 'tests/ui/macros/macro-path-prelude-fail-2.rs')
-rw-r--r-- | tests/ui/macros/macro-path-prelude-fail-2.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/ui/macros/macro-path-prelude-fail-2.rs b/tests/ui/macros/macro-path-prelude-fail-2.rs new file mode 100644 index 000000000..816a3c4cc --- /dev/null +++ b/tests/ui/macros/macro-path-prelude-fail-2.rs @@ -0,0 +1,7 @@ +mod m { + fn check() { + Result::Ok!(); //~ ERROR failed to resolve: partially resolved path in a macro + } +} + +fn main() {} |