mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
12 lines
201 B
Rust
12 lines
201 B
Rust
// revisions: mir thir
|
|
// [thir]compile-flags: -Z thir-unsafeck
|
|
|
|
struct X(());
|
|
impl X {
|
|
pub unsafe fn with(&self) { }
|
|
}
|
|
|
|
fn main() {
|
|
X(()).with(); //~ ERROR requires unsafe function or block
|
|
}
|