blob: 4da7ee21baa0f7179ae6702b8574edcf142cad36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
use std::ops::BitXor;
fn main() {
let x: u8 = BitXor::bitor(0 as u8, 0 as u8);
//~^ ERROR must be specified
//~| no function or associated item named
let g = BitXor::bitor;
//~^ ERROR must be specified
//~| no function or associated item named
}
|