summary refs log tree commit diff
path: root/src/test/ui/rustc-args-required-const2.rs
blob: 5feeca6f530e8e5bcf9a6b512ea82213963f97d5 (plain)
1
2
3
4
5
6
7
8
9
10
#![feature(rustc_attrs, const_fn)]

#[rustc_args_required_const(0)]
fn foo(_a: i32) {
}

fn main() {
    let a = foo; //~ ERROR: this function can only be invoked directly
    a(2);
}