Skip to content

Commit 0276d7a

Browse files
committed
Add more tests
1 parent 3806056 commit 0276d7a

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

src/test/ui/inference/infer-binary-operand-behind-reference.rs

+17
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
// check-pass
22

33
fn main() {
4+
// Test that we can infer the type of binary operands when
5+
// references are involved, on various types and operators.
46
let _: u8 = 0 + 0;
57
let _: u8 = 0 + &0;
68
let _: u8 = &0 + 0;
@@ -10,4 +12,19 @@ fn main() {
1012
let _: f32 = 0.0 + &0.0;
1113
let _: f32 = &0.0 + 0.0;
1214
let _: f32 = &0.0 + &0.0;
15+
16+
let _: u8 = 0 << 0;
17+
let _: u8 = 0 << &0;
18+
let _: u8 = &0 << 0;
19+
let _: u8 = &0 << &0;
20+
21+
// Test type inference when variable types are indirectly inferred.
22+
let a = 22;
23+
let _: usize = a + &44;
24+
25+
// When we have no expected type, the types of the operands is the default type.
26+
let _ = 0 + 0;
27+
let _ = 0 + &0;
28+
let _ = &0 + 0;
29+
let _ = &0 + &0;
1330
}

0 commit comments

Comments
 (0)