summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/issue-104287.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/test/ui/suggestions/issue-104287.rs9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/test/ui/suggestions/issue-104287.rs b/src/test/ui/suggestions/issue-104287.rs
deleted file mode 100644
index b7601a548..000000000
--- a/src/test/ui/suggestions/issue-104287.rs
+++ /dev/null
@@ -1,9 +0,0 @@
-// The purpose of this test is not to validate the output of the compiler.
-// Instead, it ensures the suggestion is generated without performing an arithmetic overflow.
-
-fn main() {
- let x = not_found; //~ ERROR cannot find value `not_found` in this scope
- simd_gt::<()>(x);
- //~^ ERROR this associated function takes 0 generic arguments but 1 generic argument was supplied
- //~| ERROR cannot find function `simd_gt` in this scope
-}