summaryrefslogtreecommitdiffstats
path: root/src/test/ui/span/method-and-field-eager-resolution.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/span/method-and-field-eager-resolution.rs')
-rw-r--r--src/test/ui/span/method-and-field-eager-resolution.rs15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/test/ui/span/method-and-field-eager-resolution.rs b/src/test/ui/span/method-and-field-eager-resolution.rs
deleted file mode 100644
index a0f0d8810..000000000
--- a/src/test/ui/span/method-and-field-eager-resolution.rs
+++ /dev/null
@@ -1,15 +0,0 @@
-// Test that spans get only base in eager type resolution (structurally_resolve_type).
-
-fn main() {
- let mut x = Default::default();
- //~^ ERROR type annotations needed
- x.0;
- x = 1;
-}
-
-fn foo() {
- let mut x = Default::default();
- //~^ ERROR type annotations needed
- x[0];
- x = 1;
-}