about summary refs log tree commit diff
path: root/tests/ui/default-method-parsing.rs
diff options
context:
space:
mode:
authorKivooeo <Kivooeo123@gmail.com>2025-06-07 16:17:21 +0500
committerKivooeo <Kivooeo123@gmail.com>2025-06-08 11:25:09 +0500
commit85ce9ee481a56bcabaa9480cfc0e2b420e4f1807 (patch)
tree546842f643a74977c32a405980899c37e7737def /tests/ui/default-method-parsing.rs
parentc57119b9a1c86968188bb9703a7859c17f8bc71c (diff)
downloadrust-85ce9ee481a56bcabaa9480cfc0e2b420e4f1807.tar.gz
rust-85ce9ee481a56bcabaa9480cfc0e2b420e4f1807.zip
cleaned up some tests
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() { }