You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
warning: the feature `return_type_notation` is incomplete and may not be safe to use and/or cause compiler crashes
2
+
--> $DIR/higher-ranked-bound-works.rs:3:12
3
+
|
4
+
LL | #![feature(return_type_notation)]
5
+
| ^^^^^^^^^^^^^^^^^^^^
6
+
|
7
+
= note: see issue #109417 <https://github.com/rust-lang/rust/issues/109417> for more information
8
+
= note: `#[warn(incomplete_features)]` on by default
warning: the feature `return_type_notation` is incomplete and may not be safe to use and/or cause compiler crashes
2
+
--> $DIR/namespace-conflict.rs:4:12
3
+
|
4
+
LL | #![feature(return_type_notation)]
5
+
| ^^^^^^^^^^^^^^^^^^^^
6
+
|
7
+
= note: see issue #109417 <https://github.com/rust-lang/rust/issues/109417> for more information
8
+
= note: `#[warn(incomplete_features)]` on by default
error[E0575]: expected function, found function `function`
2
+
--> $DIR/not-a-method.rs:8:5
3
+
|
4
+
LL | function(..): Send,
5
+
| ^^^^^^^^^^^^ not a function
6
+
7
+
error[E0573]: expected type, found function `function`
8
+
--> $DIR/not-a-method.rs:16:5
9
+
|
10
+
LL | function(): Send,
11
+
| ^^^^^^^^^^ not a type
12
+
13
+
error[E0576]: cannot find function `method` in this scope
14
+
--> $DIR/not-a-method.rs:28:5
15
+
|
16
+
LL | method(..): Send,
17
+
| ^^^^^^ not found in this scope
18
+
19
+
error[E0412]: cannot find type `method` in this scope
20
+
--> $DIR/not-a-method.rs:37:5
21
+
|
22
+
LL | method(): Send,
23
+
| ^^^^^^ not found in this scope
24
+
25
+
warning: the feature `return_type_notation` is incomplete and may not be safe to use and/or cause compiler crashes
26
+
--> $DIR/not-a-method.rs:1:12
27
+
|
28
+
LL | #![feature(return_type_notation)]
29
+
| ^^^^^^^^^^^^^^^^^^^^
30
+
|
31
+
= note: see issue #109417 <https://github.com/rust-lang/rust/issues/109417> for more information
32
+
= note: `#[warn(incomplete_features)]` on by default
33
+
34
+
error: return type notation not allowed in this position yet
35
+
--> $DIR/not-a-method.rs:8:5
36
+
|
37
+
LL | function(..): Send,
38
+
| ^^^^^^^^^^^^
39
+
40
+
error: return type notation not allowed in this position yet
41
+
--> $DIR/not-a-method.rs:28:5
42
+
|
43
+
LL | method(..): Send,
44
+
| ^^^^^^^^^^
45
+
46
+
error: aborting due to 6 previous errors; 1 warning emitted
47
+
48
+
Some errors have detailed explanations: E0412, E0573, E0575, E0576.
49
+
For more information about an error, try `rustc --explain E0412`.
0 commit comments