mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
12 lines
162 B
Rust
12 lines
162 B
Rust
// build-pass
|
|
// revisions: current next
|
|
//[next] compile-flags: -Ztrait-solver=next
|
|
|
|
fn test() -> Option<impl Sized> {
|
|
Some("")
|
|
}
|
|
|
|
fn main() {
|
|
test();
|
|
}
|