summaryrefslogtreecommitdiffstats
path: root/src/test/ui/type/issue-91268.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/type/issue-91268.stderr')
-rw-r--r--src/test/ui/type/issue-91268.stderr63
1 files changed, 0 insertions, 63 deletions
diff --git a/src/test/ui/type/issue-91268.stderr b/src/test/ui/type/issue-91268.stderr
deleted file mode 100644
index 6c9ee9945..000000000
--- a/src/test/ui/type/issue-91268.stderr
+++ /dev/null
@@ -1,63 +0,0 @@
-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`.