Skip to content

Commit a291548

Browse files
hvitvedCopilot
andauthored
Update rust/ql/test/library-tests/type-inference/main.rs
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent e1cd708 commit a291548

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • rust/ql/test/library-tests/type-inference

rust/ql/test/library-tests/type-inference/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2339,7 +2339,7 @@ mod loops {
23392339
vals7.push(1u8); // $ target=push
23402340
for u in vals7 {} // $ type=u:u8
23412341

2342-
let matrix1 = vec![vec![1, 2], vec![3, 4]]; // $ type=matrix1:Vec $ MISSING: type=matrix1@T:Vec type=matrix1@Vec<T>.Vec<T>:i32
2342+
let matrix1 = vec![vec![1, 2], vec![3, 4]]; // $ type=matrix1:Vec $ MISSING: type=matrix1@Vec<T>:Vec type=matrix1@Vec<T>.Vec<T>:i32
23432343
#[rustfmt::skip]
23442344
let _ = for row in matrix1 { // $ MISSING: type=row:Vec type=row@Vec<T>:i32
23452345
for cell in row { // $ MISSING: type=cell:i32

0 commit comments

Comments
 (0)