rust/tests/ui/issues/issue-6458.rs
2023-01-11 09:32:08 +00:00

15 lines
269 B
Rust

use std::marker;
pub struct TypeWithState<State>(marker::PhantomData<State>);
pub struct MyState;
pub fn foo<State>(_: TypeWithState<State>) {}
pub fn bar() {
foo(TypeWithState(marker::PhantomData));
//~^ ERROR type annotations needed [E0282]
}
fn main() {
}