summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-71584.rs
blob: c96cd598f0ce067dab8619991fc3ad9a72767a1c (plain)
1
2
3
4
5
fn main() {
    let n: u32 = 1;
    let mut d: u64 = 2;
    d = d % n.into(); //~ ERROR type annotations needed
}