summaryrefslogtreecommitdiffstats
path: root/src/test/ui/generic-associated-types/parse/trait-path-missing-gen_arg.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/generic-associated-types/parse/trait-path-missing-gen_arg.rs')
-rw-r--r--src/test/ui/generic-associated-types/parse/trait-path-missing-gen_arg.rs18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/test/ui/generic-associated-types/parse/trait-path-missing-gen_arg.rs b/src/test/ui/generic-associated-types/parse/trait-path-missing-gen_arg.rs
deleted file mode 100644
index ecabf8943..000000000
--- a/src/test/ui/generic-associated-types/parse/trait-path-missing-gen_arg.rs
+++ /dev/null
@@ -1,18 +0,0 @@
-trait X {
- type Y<'a>;
-}
-
-const _: () = {
- fn f1<'a>(arg : Box<dyn X< : 32 >>) {}
- //~^ ERROR: expected one of `>`, a const expression, lifetime, or type, found `:`
- //~| ERROR: expected parameter name, found `>`
- //~| ERROR: expected one of `!`, `)`, `+`, `,`, or `::`, found `>`
- //~| ERROR: constant provided when a type was expected
-};
-
-const _: () = {
- fn f1<'a>(arg : Box<dyn X< = 32 >>) {}
- //~^ ERROR: expected one of `>`, a const expression, lifetime, or type, found `=`
-};
-
-fn main() {}