summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0121.rs
blob: f8b4d61b3230102eda9efc78d08ec554706bdb43 (plain)
1
2
3
4
5
6
fn foo() -> _ { 5 } //~ ERROR E0121

static BAR: _ = "test"; //~ ERROR E0121

fn main() {
}