summaryrefslogtreecommitdiffstats
path: root/tests/ui/type/issue-91268.stderr
blob: 6c9ee9945844d812d20f81b0c97af77438955cd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
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`.