about summary refs log tree commit diff
path: root/tests/ui/default-method-parsing.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/default-method-parsing.rs')
-rw-r--r--tests/ui/default-method-parsing.rs7
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/ui/default-method-parsing.rs b/tests/ui/default-method-parsing.rs
deleted file mode 100644
index 84c3ab747c8..00000000000
--- a/tests/ui/default-method-parsing.rs
+++ /dev/null
@@ -1,7 +0,0 @@
-//@ check-pass
-
-trait Foo {
-    fn m(&self, _:isize) { }
-}
-
-pub fn main() { }