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 11listUnimplemented
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. |
Original file line number Diff line number Diff 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 ( ) ;
Original file line number Diff line number Diff line change 77
88macro_rules! myMacro {
99 ( ) => {
10- println!( "Hello, world!" ) ;
10+ // println!("Hello, world!"); // currently causes consistency issues
1111 } ;
1212}
1313
You can’t perform that action at this time.
0 commit comments