summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/type-not-found-in-adt-field.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/suggestions/type-not-found-in-adt-field.rs')
-rw-r--r--src/test/ui/suggestions/type-not-found-in-adt-field.rs9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/test/ui/suggestions/type-not-found-in-adt-field.rs b/src/test/ui/suggestions/type-not-found-in-adt-field.rs
deleted file mode 100644
index 4cbfe58d3..000000000
--- a/src/test/ui/suggestions/type-not-found-in-adt-field.rs
+++ /dev/null
@@ -1,9 +0,0 @@
-struct Struct {
- m: Vec<Someunknownname<String, ()>>, //~ ERROR cannot find type `Someunknownname` in this scope
- //~^ NOTE not found in this scope
-}
-struct OtherStruct { //~ HELP you might be missing a type parameter
- m: K, //~ ERROR cannot find type `K` in this scope
- //~^ NOTE not found in this scope
-}
-fn main() {}