mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-03 21:47:36 +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();
|
||
|
}
|