We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
This compiles fine:
struct Point <T> { x: T, y: T } fn main() { let _b: Point<u64> = Point::<u8> { x: 1, y: 2 }; }