mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-11 04:46:24 +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
|
|
}
|