]> git.proxmox.com Git - rustc.git/blob - src/test/ui/impl-trait/explicit-generic-args-with-impl-trait/feature-gate.rs
New upstream version 1.62.1+dfsg1
[rustc.git] / src / test / ui / impl-trait / explicit-generic-args-with-impl-trait / feature-gate.rs
1 // gate-test-explicit_generic_args_with_impl_trait
2
3 fn foo<T: ?Sized>(_f: impl AsRef<T>) {}
4
5 fn main() {
6 foo::<str>("".to_string()); //~ ERROR E0632
7 }