mirror of
https://git.proxmox.com/git/rustc
synced 2025-10-14 12:12:23 +00:00
12 lines
156 B
Rust
12 lines
156 B
Rust
// build-pass
|
|
// revisions: current next
|
|
//[next] compile-flags: -Znext-solver
|
|
|
|
fn test() -> Option<impl Sized> {
|
|
Some("")
|
|
}
|
|
|
|
fn main() {
|
|
test();
|
|
}
|