blob: 745df26e3209c80297521ed75b8f735c50756cbc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// run-pass
// Test that coercing bare fn's that return a zero sized type to
// a closure doesn't cause an LLVM ERROR
// pretty-expanded FIXME #23616
struct Foo;
fn uint_to_foo(_: usize) -> Foo {
Foo
}
#[allow(unused_must_use)]
fn main() {
(0..10).map(uint_to_foo);
}
|