Skip to content

Commit c3a360b

Browse files
committed
wip
1 parent c14764e commit c3a360b

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

rust/ql/test/library-tests/dataflow/global/inline-flow.expected

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,6 @@ subpaths
189189
| main.rs:161:13:161:13 | a [MyInt] | main.rs:142:12:142:15 | SelfParam [MyInt] | main.rs:142:42:145:5 | { ... } [MyInt] | main.rs:161:13:161:20 | a.add(...) [MyInt] |
190190
| main.rs:236:16:236:25 | source(...) | main.rs:227:25:227:30 | ...: i64 | main.rs:227:12:227:22 | ...: ... [Return] [&ref] | main.rs:236:13:236:13 | [post] m [&ref] |
191191
testFailures
192-
| main.rs:136:10:136:10 | m | Fixed missing result: hasValueFlow=34 |
193192
#select
194193
| main.rs:18:10:18:10 | a | main.rs:13:5:13:13 | source(...) | main.rs:18:10:18:10 | a | $@ | main.rs:13:5:13:13 | source(...) | source(...) |
195194
| main.rs:22:10:22:10 | n | main.rs:26:13:26:21 | source(...) | main.rs:22:10:22:10 | n | $@ | main.rs:26:13:26:21 | source(...) | source(...) |

rust/ql/test/library-tests/dataflow/global/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ impl MyInt {
133133
fn data_through_associated_function() {
134134
let n = MyInt::new(source(34));
135135
let MyInt { value: m } = n;
136-
sink(m); // $ MISSING: hasValueFlow=34
136+
sink(m); // $ hasValueFlow=34
137137
}
138138

139139
impl Add for MyInt {

0 commit comments

Comments
 (0)