mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-16 05:56:56 +00:00
7 lines
145 B
Rust
7 lines
145 B
Rust
//@ known-bug: #108428
|
|
//@ needs-rustc-debug-assertions
|
|
//@ compile-flags: -Wunused-lifetimes
|
|
fn main() {
|
|
let _: extern fn<'a: 'static>();
|
|
}
|