mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
14 lines
223 B
Rust
14 lines
223 B
Rust
// run-pass
|
|
#![allow(dead_code)]
|
|
// pretty-expanded FIXME #23616
|
|
#![allow(non_camel_case_types)]
|
|
|
|
struct r<F> where F: FnOnce() {
|
|
field: F,
|
|
}
|
|
|
|
pub fn main() {
|
|
fn f() {}
|
|
let _i: r<fn()> = r {field: f as fn()};
|
|
}
|