rust/tests/ui/error-codes/E0132.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
75 B
Rust
Raw Normal View History

2016-05-27 15:06:24 -05:00
#![feature(start)]
#[start]
2016-08-10 12:39:12 -05:00
fn f< T >() {} //~ ERROR E0132
2016-05-27 15:06:24 -05:00
fn main() {
}