blob: 66f0dabb73a250d94af4523f007aa4ea85906124 [file] [log] [blame]
//@ run-pass
// Test that coercing bare fn's that return a zero sized type to
// a closure doesn't cause an LLVM ERROR
struct Foo;
fn uint_to_foo(_: usize) -> Foo {
Foo
}
#[allow(unused_must_use)]
fn main() {
(0..10).map(uint_to_foo);
}