mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
17 lines
280 B
Rust
17 lines
280 B
Rust
// 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);
|
|
}
|