mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
21 lines
476 B
Plaintext
21 lines
476 B
Plaintext
error: `#[test]` attribute is only allowed on non associated functions
|
|
--> $DIR/test-attr-non-associated-functions.rs:9:5
|
|
|
|
|
LL | / fn new() -> A {
|
|
LL | |
|
|
LL | | A {}
|
|
LL | | }
|
|
| |_____^
|
|
|
|
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
|
|
|