mirror of
https://git.proxmox.com/git/rustc
synced 2025-10-15 03:43:33 +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();
|
|
}
|