mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 02:40:45 +00:00
10 lines
173 B
Rust
10 lines
173 B
Rust
// Check that inherent impls cannot be unsafe.
|
|
|
|
struct SomeStruct;
|
|
|
|
unsafe impl SomeStruct { //~ ERROR inherent impls cannot be unsafe
|
|
fn foo(self) { }
|
|
}
|
|
|
|
fn main() { }
|