summaryrefslogtreecommitdiffstats
path: root/src/test/ui/generic-associated-types/parse/trait-path-types.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/generic-associated-types/parse/trait-path-types.stderr')
-rw-r--r--src/test/ui/generic-associated-types/parse/trait-path-types.stderr41
1 files changed, 0 insertions, 41 deletions
diff --git a/src/test/ui/generic-associated-types/parse/trait-path-types.stderr b/src/test/ui/generic-associated-types/parse/trait-path-types.stderr
deleted file mode 100644
index 8f7a73c95..000000000
--- a/src/test/ui/generic-associated-types/parse/trait-path-types.stderr
+++ /dev/null
@@ -1,41 +0,0 @@
-error: expected one of `,`, `:`, or `>`, found `=`
- --> $DIR/trait-path-types.rs:6:37
- |
-LL | fn f<'a>(arg : Box<dyn X< [u8; 1] = u32>>) {}
- | - ^ expected one of `,`, `:`, or `>`
- | |
- | maybe try to close unmatched angle bracket
- |
-help: you might have meant to end the type parameters here
- |
-LL | fn f<'a>(arg : Box<dyn X< [u8; 1]> = u32>>) {}
- | +
-
-error: expected one of `,`, `:`, or `>`, found `=`
- --> $DIR/trait-path-types.rs:11:37
- |
-LL | fn f1<'a>(arg : Box<dyn X<(Y<'a>) = &'a ()>>) {}
- | - ^ expected one of `,`, `:`, or `>`
- | |
- | maybe try to close unmatched angle bracket
- |
-help: you might have meant to end the type parameters here
- |
-LL | fn f1<'a>(arg : Box<dyn X<(Y<'a>)> = &'a ()>>) {}
- | +
-
-error: expected one of `,`, `:`, or `>`, found `=`
- --> $DIR/trait-path-types.rs:16:33
- |
-LL | fn f1<'a>(arg : Box<dyn X< 'a = u32 >>) {}
- | -- ^ expected one of `,`, `:`, or `>`
- | |
- | maybe try to close unmatched angle bracket
- |
-help: you might have meant to end the type parameters here
- |
-LL | fn f1<'a>(arg : Box<dyn X< 'a> = u32 >>) {}
- | +
-
-error: aborting due to 3 previous errors
-