mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-02 04:57:35 +00:00
10 lines
156 B
Rust
10 lines
156 B
Rust
//@ build-pass
|
|
#![allow(internal_features)]
|
|
#![feature(rustc_attrs)]
|
|
|
|
#[rustc_force_inline]
|
|
fn f() {}
|
|
fn g<T: FnOnce()>(t: T) { t(); }
|
|
|
|
fn main() { g(f); }
|