about summary refs log tree commit diff
path: root/tests/ui/traits/const-traits/attr-misuse.stderr
blob: 2f86efac4c9212bb7fd023c3c8024d2360a11f84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
error: `#[const_trait]` attribute cannot be used on required trait methods
  --> $DIR/attr-misuse.rs:5:5
   |
LL |     #[const_trait]
   |     ^^^^^^^^^^^^^^
   |
   = help: `#[const_trait]` can only be applied to traits

error: `#[const_trait]` attribute cannot be used on functions
  --> $DIR/attr-misuse.rs:9:1
   |
LL | #[const_trait]
   | ^^^^^^^^^^^^^^
   |
   = help: `#[const_trait]` can only be applied to traits

error: aborting due to 2 previous errors