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 20:06:24 +00:00
#![feature(start)]
#[start]
2016-08-10 17:39:12 +00:00
fn f< T >() {} //~ ERROR E0132
2016-05-27 20:06:24 +00:00
fn main() {
}