summaryrefslogtreecommitdiffstats
path: root/src/test/ui/resolve/point-at-type-parameter-shadowing-another-type.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/resolve/point-at-type-parameter-shadowing-another-type.stderr')
-rw-r--r--src/test/ui/resolve/point-at-type-parameter-shadowing-another-type.stderr12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/test/ui/resolve/point-at-type-parameter-shadowing-another-type.stderr b/src/test/ui/resolve/point-at-type-parameter-shadowing-another-type.stderr
new file mode 100644
index 000000000..af9f4612a
--- /dev/null
+++ b/src/test/ui/resolve/point-at-type-parameter-shadowing-another-type.stderr
@@ -0,0 +1,12 @@
+error[E0574]: expected struct, variant or union type, found type parameter `Baz`
+ --> $DIR/point-at-type-parameter-shadowing-another-type.rs:16:13
+ |
+LL | impl<Baz> Foo<Baz> for Bar {
+ | --- found this type parameter
+...
+LL | Baz { num } => num,
+ | ^^^ not a struct, variant or union type
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0574`.