Skip to content

Commit

Permalink
Rust: Comment out the printlin! macro invocations for now.
Browse files Browse the repository at this point in the history
  • Loading branch information
geoffw0 committed Sep 16, 2024
1 parent 63a635c commit 3748365
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
listUnimplemented
| @0:0:0:0 | Not yet implemented (x20). |
| @0:0:0:0 | Not yet implemented (x14). |
| does_not_compile.rs@2:2:2:5 | Not yet implemented. |
| does_not_compile.rs@2:7:2:8 | Not yet implemented. |
| does_not_compile.rs@2:10:2:12 | Not yet implemented. |
Expand Down
4 changes: 2 additions & 2 deletions rust/ql/test/query-tests/diagnostics/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ mod my_macro;

// another comment

fn main() {
println!("Hello, world!"); // another comment
fn main() { // another comment
//println!("Hello, world!"); // currently causes consistency issues

my_struct::my_func();
my_macro::my_func();
Expand Down
2 changes: 1 addition & 1 deletion rust/ql/test/query-tests/diagnostics/my_macro.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

macro_rules! myMacro {
() => {
println!("Hello, world!");
//println!("Hello, world!"); // currently causes consistency issues
};
}

Expand Down

0 comments on commit 3748365

Please sign in to comment.