summaryrefslogtreecommitdiffstats
path: root/src/test/ui/definition-reachable/auxiliary/field-method-macro.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/definition-reachable/auxiliary/field-method-macro.rs')
-rw-r--r--src/test/ui/definition-reachable/auxiliary/field-method-macro.rs23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/test/ui/definition-reachable/auxiliary/field-method-macro.rs b/src/test/ui/definition-reachable/auxiliary/field-method-macro.rs
deleted file mode 100644
index 30ba70bdf..000000000
--- a/src/test/ui/definition-reachable/auxiliary/field-method-macro.rs
+++ /dev/null
@@ -1,23 +0,0 @@
-#![feature(decl_macro)]
-
-mod n {
- pub struct B(pub(crate) p::C);
- impl B {
- pub fn new() -> Self {
- B(p::C)
- }
- }
- mod p {
- pub struct C;
-
- impl C {
- pub fn foo(&self) -> i32 {
- 33
- }
- }
- }
-}
-
-pub macro m() {
- n::B::new().0.foo()
-}