summaryrefslogtreecommitdiffstats
path: root/tests/ui/type/issue-91268.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /tests/ui/type/issue-91268.stderr
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/type/issue-91268.stderr')
-rw-r--r--tests/ui/type/issue-91268.stderr63
1 files changed, 63 insertions, 0 deletions
diff --git a/tests/ui/type/issue-91268.stderr b/tests/ui/type/issue-91268.stderr
new file mode 100644
index 000000000..6c9ee9945
--- /dev/null
+++ b/tests/ui/type/issue-91268.stderr
@@ -0,0 +1,63 @@
+error: this file contains an unclosed delimiter
+ --> $DIR/issue-91268.rs:9:12
+ |
+LL | fn main() {
+ | - unclosed delimiter
+LL | 0: u8(ţ
+ | - ^
+ | |
+ | unclosed delimiter
+
+error: this file contains an unclosed delimiter
+ --> $DIR/issue-91268.rs:9:12
+ |
+LL | fn main() {
+ | - unclosed delimiter
+LL | 0: u8(ţ
+ | - ^
+ | |
+ | unclosed delimiter
+
+error[E0412]: cannot find type `ţ` in this scope
+ --> $DIR/issue-91268.rs:9:11
+ |
+LL | 0: u8(ţ
+ | ^ expecting a type here because of type ascription
+
+error[E0214]: parenthesized type parameters may only be used with a `Fn` trait
+ --> $DIR/issue-91268.rs:9:8
+ |
+LL | 0: u8(ţ
+ | ^^^^ only `Fn` traits may use parentheses
+ |
+help: use angle brackets instead
+ |
+LL | 0: u8<ţ>
+ | ~ +
+
+error[E0109]: type arguments are not allowed on builtin type `u8`
+ --> $DIR/issue-91268.rs:9:11
+ |
+LL | 0: u8(ţ
+ | -- ^ type argument not allowed
+ | |
+ | not allowed on builtin type `u8`
+ |
+help: primitive type `u8` doesn't have generic parameters
+ |
+LL - 0: u8(ţ
+LL + 0: u8
+ |
+
+error[E0308]: mismatched types
+ --> $DIR/issue-91268.rs:9:5
+ |
+LL | fn main() {
+ | - expected `()` because of default return type
+LL | 0: u8(ţ
+ | ^^^^^^^ expected `()`, found `u8`
+
+error: aborting due to 6 previous errors
+
+Some errors have detailed explanations: E0109, E0214, E0308, E0412.
+For more information about an error, try `rustc --explain E0109`.