summaryrefslogtreecommitdiffstats
path: root/src/test/ui/mismatched_types/issue-35030.stderr
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/test/ui/mismatched_types/issue-35030.stderr22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/test/ui/mismatched_types/issue-35030.stderr b/src/test/ui/mismatched_types/issue-35030.stderr
deleted file mode 100644
index 5ea9bcfc1..000000000
--- a/src/test/ui/mismatched_types/issue-35030.stderr
+++ /dev/null
@@ -1,22 +0,0 @@
-error[E0308]: mismatched types
- --> $DIR/issue-35030.rs:9:14
- |
-LL | impl<bool> Parser<bool> for bool {
- | ---- this type parameter
-LL | fn parse(text: &str) -> Option<bool> {
-LL | Some(true)
- | ---- ^^^^ expected type parameter `bool`, found `bool`
- | |
- | arguments to this enum variant are incorrect
- |
- = note: expected type parameter `bool` (type parameter `bool`)
- found type `bool` (`bool`)
-note: tuple variant defined here
- --> $SRC_DIR/core/src/option.rs:LL:COL
- |
-LL | Some(#[stable(feature = "rust1", since = "1.0.0")] T),
- | ^^^^
-
-error: aborting due to previous error
-
-For more information about this error, try `rustc --explain E0308`.