summaryrefslogtreecommitdiffstats
path: root/tests/ui/imports/import-after-macro-expand-2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/imports/import-after-macro-expand-2.rs')
-rw-r--r--tests/ui/imports/import-after-macro-expand-2.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/ui/imports/import-after-macro-expand-2.rs b/tests/ui/imports/import-after-macro-expand-2.rs
index b3996d488..ff773fc82 100644
--- a/tests/ui/imports/import-after-macro-expand-2.rs
+++ b/tests/ui/imports/import-after-macro-expand-2.rs
@@ -12,9 +12,7 @@ mod tests {
use super::*;
fn test_thing() {
- let thing: crate::thing::Thing = Thing::Bar;
- // FIXME: `thing` should refer to `crate::Thing`,
- // FIXME: but doesn't currently refer to it due to backward compatibility
+ let thing: crate::Thing = Thing::Foo;
}
}