summary refs log tree commit diff
path: root/src/test/run-fail/do-while-body-fails.rs
blob: 08835ab9204031530e29f3929f10ed113664046c (plain)
1
2
// error-pattern:quux
fn main() { let x: int = do  { fail "quux"; } while true; }