b2c6eeb713
also refactor `FnKind` and `visit_assoc_item` visitors
9 lines
206 B
Rust
9 lines
206 B
Rust
extern {
|
|
const fn foo();
|
|
//~^ ERROR functions in `extern` blocks cannot have qualifiers
|
|
const unsafe fn bar();
|
|
//~^ ERROR functions in `extern` blocks cannot have qualifiers
|
|
}
|
|
|
|
fn main() {}
|