about summary refs log tree commit diff
path: root/tests/ui/tuple/tuple-struct-fields/test3.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/tuple/tuple-struct-fields/test3.rs')
-rw-r--r--tests/ui/tuple/tuple-struct-fields/test3.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/tuple/tuple-struct-fields/test3.rs b/tests/ui/tuple/tuple-struct-fields/test3.rs
index 98d19426e77..b5f98a65fa6 100644
--- a/tests/ui/tuple/tuple-struct-fields/test3.rs
+++ b/tests/ui/tuple/tuple-struct-fields/test3.rs
@@ -1,7 +1,7 @@
 macro_rules! define_struct {
     ($t:ty) => {
         struct S1(pub($t));
-        struct S2(pub (in foo) ());
+        struct S2(pub (in crate::foo) ());
         struct S3(pub($t) ());
         //~^ ERROR expected one of `)` or `,`, found `(`
     }