about summary refs log tree commit diff
path: root/tests/ui/inference/issue-71584.rs
blob: 61568e5467c575b7650504d53c491aa0f6ee6f5f (plain)
1
2
3
4
5
6
7
//@ ignore-windows FIXME: We get an extra E0283 on Windows
fn main() {
    let n: u32 = 1;
    let mut d: u64 = 2;
    d = d % n.into();
    //~^ ERROR type annotations needed
}