summaryrefslogtreecommitdiffstats
path: root/src/test/ui/mismatched_types/issue-35030.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/mismatched_types/issue-35030.stderr')
-rw-r--r--src/test/ui/mismatched_types/issue-35030.stderr22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/test/ui/mismatched_types/issue-35030.stderr b/src/test/ui/mismatched_types/issue-35030.stderr
new file mode 100644
index 000000000..5ea9bcfc1
--- /dev/null
+++ b/src/test/ui/mismatched_types/issue-35030.stderr
@@ -0,0 +1,22 @@
+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`.