about summary refs log tree commit diff
path: root/src/test
diff options
context:
space:
mode:
authorMazdak Farrokhzad <twingoow@gmail.com>2019-09-08 00:07:33 +0200
committerGitHub <noreply@github.com>2019-09-08 00:07:33 +0200
commit77e1a7c578f61572bbb4e40c5a12e2d0a74329b8 (patch)
tree565995d5d63496fb383886dcf4995b0a9c96c405 /src/test
parent4ea77975ab2d9fd31309d8c11013d553d22745d6 (diff)
parent56f635304b7a2689cfe5e98577428d67f059b413 (diff)
downloadrust-77e1a7c578f61572bbb4e40c5a12e2d0a74329b8.tar.gz
rust-77e1a7c578f61572bbb4e40c5a12e2d0a74329b8.zip
Rollup merge of #64177 - petrochenkov:curmod, r=matthewjasper
resolve: Do not afraid to set current module to enums and traits

After https://github.com/rust-lang/rust/pull/63535/commits/cfbb60bf6d83fbcfcca1f2919131aa39fb997b53 it's ok.

This is likely required for https://github.com/rust-lang/rust/pull/63468 to work correctly, because that PR starts resolving attributes on enum variants.

r? @matthewjasper @c410-f3r
Diffstat (limited to 'src/test')
-rw-r--r--src/test/ui/resolve/block-with-trait-parent.rs14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/test/ui/resolve/block-with-trait-parent.rs b/src/test/ui/resolve/block-with-trait-parent.rs
new file mode 100644
index 00000000000..bc86f94e921
--- /dev/null
+++ b/src/test/ui/resolve/block-with-trait-parent.rs
@@ -0,0 +1,14 @@
+// check-pass
+
+trait Trait {
+    fn method(&self) {
+        // Items inside a block turn it into a module internally.
+        struct S;
+        impl Trait for S {}
+
+        // OK, `Trait` is in scope here from method resolution point of view.
+        S.method();
+    }
+}
+
+fn main() {}