10 lines
157 B
Rust
10 lines
157 B
Rust
|
const fn f() -> usize {
|
||
|
//~^ ERROR mismatched types
|
||
|
const FIELD: usize = loop {
|
||
|
0
|
||
|
//~^ ERROR mismatched types
|
||
|
};
|
||
|
}
|
||
|
|
||
|
fn main() {}
|