summaryrefslogtreecommitdiffstats
path: root/src/test/ui/error-codes/E0121.rs
blob: 98cd6d54c1fd4e00732c196172da08157c1caf01 (plain)
1
2
3
4
5
fn foo() -> _ { 5 } //~ ERROR E0121

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

fn main() {}