blob: e3a8c85830f73fb2c7db62f91f36bef789fccb4f [file] [log] [blame]
enum Foo {
A = foo(), //~ ERROR: type annotations needed
B = foo(), //~ ERROR: type annotations needed
}
const fn foo<T>() -> isize {
0
}
fn main() {}