10 lines
116 B
Rust
10 lines
116 B
Rust
|
// xfail-test
|
||
|
enum x = ();
|
||
|
impl x {
|
||
|
unsafe fn with() { } // This should fail
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
x(()).with();
|
||
|
}
|