mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
18 lines
308 B
Rust
18 lines
308 B
Rust
struct A {}
|
|
struct B {}
|
|
|
|
impl From<A> for B {
|
|
fn from(a: A) -> B {
|
|
B{}
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
let c1 = ();
|
|
c1::<()>;
|
|
//~^ ERROR type arguments are not allowed on local variable
|
|
|
|
let c1 = A {};
|
|
c1::<dyn Into<B>>;
|
|
//~^ ERROR type arguments are not allowed on local variable
|
|
}
|