Skip to content

Commit 3748365

Browse files
committed
Rust: Comment out the printlin! macro invocations for now.
1 parent 63a635c commit 3748365

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

rust/ql/test/query-tests/diagnostics/MissingElements.expected

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
listUnimplemented
2-
| @0:0:0:0 | Not yet implemented (x20). |
2+
| @0:0:0:0 | Not yet implemented (x14). |
33
| does_not_compile.rs@2:2:2:5 | Not yet implemented. |
44
| does_not_compile.rs@2:7:2:8 | Not yet implemented. |
55
| does_not_compile.rs@2:10:2:12 | Not yet implemented. |

rust/ql/test/query-tests/diagnostics/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ mod my_macro;
1010

1111
// another comment
1212

13-
fn main() {
14-
println!("Hello, world!"); // another comment
13+
fn main() { // another comment
14+
//println!("Hello, world!"); // currently causes consistency issues
1515

1616
my_struct::my_func();
1717
my_macro::my_func();

rust/ql/test/query-tests/diagnostics/my_macro.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
macro_rules! myMacro {
99
() => {
10-
println!("Hello, world!");
10+
//println!("Hello, world!"); // currently causes consistency issues
1111
};
1212
}
1313

0 commit comments

Comments
 (0)