summaryrefslogtreecommitdiffstats
path: root/src/test/ui/typeck/type-placeholder-fn-in-const.rs
blob: ab2e2d8c53aa3eb2166af328d8aaff2a536a84b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
struct MyStruct;

trait Test {
    const TEST: fn() -> _;
    //~^ ERROR: the placeholder `_` is not allowed within types on item signatures for functions [E0121]
    //~| ERROR: the placeholder `_` is not allowed within types on item signatures for constants [E0121]
}

impl Test for MyStruct {
    const TEST: fn() -> _ = 42;
    //~^ ERROR: the placeholder `_` is not allowed within types on item signatures for functions [E0121]
}

fn main() {}