6d86969260
conflict with the new single-line-sugared-inner-doc-comment (`//! ...`).
8 lines
134 B
Rust
8 lines
134 B
Rust
// -*- rust -*-
|
|
|
|
unsafe fn f() { ret; }
|
|
|
|
fn main() {
|
|
f(); //~ ERROR access to unsafe function requires unsafe function or block
|
|
}
|