mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
23 lines
393 B
Rust
23 lines
393 B
Rust
// compile-flags:--test
|
|
|
|
struct A {}
|
|
|
|
impl A {
|
|
#[test]
|
|
//~^ ERROR the `#[test]` attribute may only be used on a non-associated function
|
|
fn new() -> A {
|
|
A {}
|
|
}
|
|
#[test]
|
|
//~^ ERROR the `#[test]` attribute may only be used on a non-associated function
|
|
fn recovery_witness() -> A {
|
|
A {}
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn test() {
|
|
let _ = A::new();
|
|
}
|
|
|
|
fn main() {}
|