blob: 8df9332703316d9d56808630286e1ac0b55dec32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#[prelude_import]
use ::std::prelude::rust_2015::*;
#[macro_use]
extern crate std;
// compile-flags: -Zunpretty=hir
// check-fail
// In #100948 this caused an ICE with -Zunpretty=hir.
fn main() {
<bad-literal>;
}
|