summaryrefslogtreecommitdiffstats
path: root/src/test/ui/hygiene/impl_items-2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/hygiene/impl_items-2.rs')
-rw-r--r--src/test/ui/hygiene/impl_items-2.rs26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/test/ui/hygiene/impl_items-2.rs b/src/test/ui/hygiene/impl_items-2.rs
deleted file mode 100644
index 465e444ae..000000000
--- a/src/test/ui/hygiene/impl_items-2.rs
+++ /dev/null
@@ -1,26 +0,0 @@
-#![feature(decl_macro)]
-
-trait Trait {
- fn foo() {}
-}
-
-macro trait_impl() {
- fn foo() {}
-}
-
-// Check that we error on multiple impl items that resolve to the same trait item.
-impl Trait for i32 {
- trait_impl!();
- fn foo() {}
- //~^ ERROR duplicate definitions with name `foo`: [E0201]
-}
-
-struct Type;
-
-// Check that we do not error with inherent impls.
-impl Type {
- trait_impl!();
- fn foo() {}
-}
-
-fn main() {}