2019-07-15 21:54:58 +02:00
|
|
|
error: `#[test]` attribute is only allowed on non associated functions
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/test-attr-non-associated-functions.rs:9:5
|
2018-11-17 11:39:58 +01:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | / fn new() -> A {
|
2020-03-17 13:27:56 +01:00
|
|
|
LL | |
|
2018-11-17 11:39:58 +01:00
|
|
|
LL | | A {}
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
2020-03-17 13:27:56 +01:00
|
|
|
error: `#[test]` attribute is only allowed on non associated functions
|
|
|
|
--> $DIR/test-attr-non-associated-functions.rs:14:5
|
|
|
|
|
|
|
|
|
LL | / fn recovery_witness() -> A {
|
|
|
|
LL | |
|
|
|
|
LL | | A {}
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2018-11-17 11:39:58 +01:00
|
|
|
|