about summary refs log tree commit diff
path: root/src/test
diff options
context:
space:
mode:
authorMark Rousskov <mark.simulacrum@gmail.com>2020-04-30 10:23:45 -0400
committerMark Rousskov <mark.simulacrum@gmail.com>2020-04-30 10:23:45 -0400
commitbfed215cedceecb4e4c45ccf48d86b4a8df3ae38 (patch)
tree6b8e59cfc5087041f60f9d7c6d31606adbb02883 /src/test
parent70fafed3c8c48062617a2811d0cd3e0fafcf3319 (diff)
downloadrust-bfed215cedceecb4e4c45ccf48d86b4a8df3ae38.tar.gz
rust-bfed215cedceecb4e4c45ccf48d86b4a8df3ae38.zip
Remove ignored type alias test
This is tracked by a GH issue 17164, and having an ignored test for it isn't
helpful.
Diffstat (limited to 'src/test')
-rw-r--r--src/test/ui/fully-qualified-type/fully-qualified-type-name3.rs14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/test/ui/fully-qualified-type/fully-qualified-type-name3.rs b/src/test/ui/fully-qualified-type/fully-qualified-type-name3.rs
deleted file mode 100644
index 22faa66d9fb..00000000000
--- a/src/test/ui/fully-qualified-type/fully-qualified-type-name3.rs
+++ /dev/null
@@ -1,14 +0,0 @@
-// Test that we use fully-qualified type names in error messages.
-
-// ignore-test
-
-type T1 = usize;
-type T2 = isize;
-
-fn bar(x: T1) -> T2 {
-    return x;
-    //~^ ERROR mismatched types: expected `T2`, found `T1`
-}
-
-fn main() {
-}