about summary refs log tree commit diff
path: root/tests/ui/traits/const-traits/const-closure-parse-not-item.stderr
blob: cc9d9bd602294e4a0fc043420a0f558976842336 (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
error: `[const]` can only be applied to `#[const_trait]` traits
  --> $DIR/const-closure-parse-not-item.rs:7:20
   |
LL | const fn test() -> impl [const] Fn() {
   |                    ^^^^^^^^^^^^ can't be applied to `Fn`
   |
note: `Fn` can't be used with `[const]` because it isn't annotated with `#[const_trait]`
  --> $SRC_DIR/core/src/ops/function.rs:LL:COL

error: `[const]` can only be applied to `#[const_trait]` traits
  --> $DIR/const-closure-parse-not-item.rs:7:20
   |
LL | const fn test() -> impl [const] Fn() {
   |                    ^^^^^^^^^^^^ can't be applied to `Fn`
   |
note: `Fn` can't be used with `[const]` because it isn't annotated with `#[const_trait]`
  --> $SRC_DIR/core/src/ops/function.rs:LL:COL
   = note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`

error: `[const]` can only be applied to `#[const_trait]` traits
  --> $DIR/const-closure-parse-not-item.rs:7:20
   |
LL | const fn test() -> impl [const] Fn() {
   |                    ^^^^^^^^^^^^ can't be applied to `Fn`
   |
note: `Fn` can't be used with `[const]` because it isn't annotated with `#[const_trait]`
  --> $SRC_DIR/core/src/ops/function.rs:LL:COL
   = note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`

error: aborting due to 3 previous errors