mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-15 21:31:35 +00:00
8 lines
103 B
Rust
8 lines
103 B
Rust
//@ check-pass
|
|
|
|
fn foo<T: ?Sized>(_f: impl AsRef<T>) {}
|
|
|
|
fn main() {
|
|
foo::<str>("".to_string());
|
|
}
|