6 lines
145 B
Rust
6 lines
145 B
Rust
//@ known-bug: #108428
|
|
//@ needs-rustc-debug-assertions
|
|
//@ compile-flags: -Wunused-lifetimes
|
|
fn main() {
|
|
let _: extern fn<'a: 'static>();
|
|
}
|