rust/tests/ui/unconstrained-none.rs

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

6 lines
82 B
Rust
Raw Normal View History

2013-06-07 18:07:58 +00:00
// Issue #5062
fn main() {
None; //~ ERROR type annotations needed [E0282]
2013-06-07 18:07:58 +00:00
}