about summary refs log tree commit diff
path: root/tests/ui/feature-gates/feature-gate-min_const_fn.stderr
blob: 0b16f9abb7071bcd1a3c32d8e2cfedb4e42e7dc5 (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
error[E0379]: functions in traits cannot be declared const
  --> $DIR/feature-gate-min_const_fn.rs:6:5
   |
LL |     const fn foo() -> u32;
   |     ^^^^^-
   |     |
   |     functions in traits cannot be const
   |     help: remove the `const`

error[E0379]: functions in traits cannot be declared const
  --> $DIR/feature-gate-min_const_fn.rs:7:5
   |
LL |     const fn bar() -> u32 { 0 }
   |     ^^^^^-
   |     |
   |     functions in traits cannot be const
   |     help: remove the `const`

error[E0379]: functions in trait impls cannot be declared const
  --> $DIR/feature-gate-min_const_fn.rs:11:5
   |
LL |     const fn foo() -> u32 { 0 }
   |     ^^^^^-
   |     |
   |     functions in trait impls cannot be const
   |     help: remove the `const`

error: aborting due to 3 previous errors

For more information about this error, try `rustc --explain E0379`.