summary refs log tree commit diff
path: root/src/test/ui/lint/issue-87308.stdout
blob: 68a076c93be614b0071e64e011bbee894f410401 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![feature(prelude_import)]
#![no_std]
#[prelude_import]
use ::std::prelude::rust_2015::*;
#[macro_use]
extern crate std;
// Regression test for issue #87308.

// compile-flags: -Zunpretty=everybody_loops
// check-pass

macro_rules! foo { () => { break 'x ; } }

pub fn main() { loop { } }