blob: fd7ff6ce5d2fbc0c7a30373a9c18c965c4be4946 (
plain)
1
2
3
4
5
6
7
8
|
struct MyStruct;
impl MyStruct {
pub fn do_something(*self) {}
// { dg-error "cannot pass .self. by raw pointer" "" { target *-*-* } .-1 }
// { dg-error "failed to parse inherent impl item in inherent impl" "" { target *-*-* } .-2 }
// { dg-error "failed to parse item in crate" "" { target *-*-* } .-3 }
}
|