rust/tests/ui/consts/control-flow/loop.rs

90 lines
1.1 KiB
Rust
Raw Normal View History

2020-06-26 00:43:48 +00:00
const _: () = loop { break (); };
2020-06-26 00:43:48 +00:00
static FOO: i32 = loop { break 4; };
const fn foo() {
2020-06-26 00:43:48 +00:00
loop {}
}
pub trait Foo {
2020-06-26 00:43:48 +00:00
const BAR: i32 = loop { break 4; };
}
impl Foo for () {
2020-06-26 00:43:48 +00:00
const BAR: i32 = loop { break 4; };
}
fn non_const_outside() {
const fn const_inside() {
2020-06-26 00:43:48 +00:00
loop {}
}
}
const fn const_outside() {
fn non_const_inside() {
loop {}
}
}
fn main() {
let x = [0; {
while false {}
4
}];
}
const _: i32 = {
let mut x = 0;
2020-06-26 00:43:48 +00:00
while x < 4 {
x += 1;
}
2020-06-26 00:43:48 +00:00
while x < 8 {
x += 1;
}
x
};
const _: i32 = {
let mut x = 0;
2020-06-26 00:43:48 +00:00
for i in 0..4 { //~ ERROR `for` is not allowed in a `const`
x += i;
}
2020-06-26 00:43:48 +00:00
for i in 0..4 { //~ ERROR `for` is not allowed in a `const`
x += i;
}
x
};
const _: i32 = {
let mut x = 0;
2020-06-26 00:43:48 +00:00
loop {
x += 1;
2020-05-21 19:49:38 +00:00
if x == 4 {
break;
}
}
2020-06-26 00:43:48 +00:00
loop {
x += 1;
2020-05-21 19:49:38 +00:00
if x == 8 {
break;
}
}
x
};
const _: i32 = {
let mut x = 0;
2020-06-26 00:43:48 +00:00
while let None = Some(x) { }
while let None = Some(x) { }
x
};