File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
rust/ql/test/query-tests/diagnostics Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
listUnimplemented
2
- | @0:0:0:0 | Not yet implemented (x20 ). |
2
+ | @0:0:0:0 | Not yet implemented (x14 ). |
3
3
| does_not_compile.rs@2:2:2:5 | Not yet implemented. |
4
4
| does_not_compile.rs@2:7:2:8 | Not yet implemented. |
5
5
| does_not_compile.rs@2:10:2:12 | Not yet implemented. |
Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ mod my_macro;
10
10
11
11
// another comment
12
12
13
- fn main ( ) {
14
- println ! ( "Hello, world!" ) ; // another comment
13
+ fn main ( ) { // another comment
14
+ // println!("Hello, world!"); // currently causes consistency issues
15
15
16
16
my_struct:: my_func ( ) ;
17
17
my_macro:: my_func ( ) ;
Original file line number Diff line number Diff line change 7
7
8
8
macro_rules! myMacro {
9
9
( ) => {
10
- println!( "Hello, world!" ) ;
10
+ // println!("Hello, world!"); // currently causes consistency issues
11
11
} ;
12
12
}
13
13
You can’t perform that action at this time.
0 commit comments