summaryrefslogtreecommitdiffstats
path: root/tests/ui/inference/issue-71584.rs
blob: 7bf3ed60ec104e83e8e83d74d824dadee0d3d4ee (plain)
1
2
3
4
5
6
fn main() {
    let n: u32 = 1;
    let mut d: u64 = 2;
    d = d % n.into();
    //~^ ERROR type annotations needed
}