summaryrefslogtreecommitdiffstats
path: root/src/test/ui/span/missing-unit-argument.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/test/ui/span/missing-unit-argument.rs17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/test/ui/span/missing-unit-argument.rs b/src/test/ui/span/missing-unit-argument.rs
deleted file mode 100644
index 5b9861da6..000000000
--- a/src/test/ui/span/missing-unit-argument.rs
+++ /dev/null
@@ -1,17 +0,0 @@
-fn foo(():(), ():()) {}
-fn bar(():()) {}
-
-struct S;
-impl S {
- fn baz(self, (): ()) { }
- fn generic<T>(self, _: T) { }
-}
-
-fn main() {
- let _: Result<(), String> = Ok(); //~ ERROR this enum variant takes
- foo(); //~ ERROR this function takes
- foo(()); //~ ERROR this function takes
- bar(); //~ ERROR this function takes
- S.baz(); //~ ERROR this function takes
- S.generic::<()>(); //~ ERROR this function takes
-}