File tree Expand file tree Collapse file tree 3 files changed +456
-456
lines changed
rust/ql/test/library-tests/path-resolution Expand file tree Collapse file tree 3 files changed +456
-456
lines changed Original file line number Diff line number Diff line change 11multipleCallTargets
2- | main.rs:125 :9:125 :11 | f(...) |
3- | main.rs:365 :9:367 :16 | ...::f(...) |
4- | main.rs:368 :9:370 :16 | ...::f(...) |
5- | main.rs:447 :9:451 :16 | ...::f(...) |
6- | main.rs:452 :9:456 :16 | ...::f(...) |
2+ | main.rs:126 :9:126 :11 | f(...) |
3+ | main.rs:366 :9:368 :16 | ...::f(...) |
4+ | main.rs:369 :9:371 :16 | ...::f(...) |
5+ | main.rs:448 :9:452 :16 | ...::f(...) |
6+ | main.rs:453 :9:457 :16 | ...::f(...) |
Original file line number Diff line number Diff line change 11mod my; // I1
22
3- use my:: * ; // $ item=I1
3+ #[ rustfmt:: skip]
4+ use { { { my:: { { self as my_alias, * } } } } } ; // $ MISSING: item=I1
45
56use my:: nested:: nested1:: nested2:: * ; // $ item=I3
67
@@ -815,7 +816,8 @@ fn main() {
815816 nested6:: f ( ) ; // $ item=I116
816817 nested8:: f ( ) ; // $ item=I119
817818 my3:: f ( ) ; // $ item=I200
818- nested_f ( ) ; // $ item=I201
819+ nested_f ( ) ; // $ MISSING: item=I201
820+ my_alias:: nested_f ( ) ; // $ MISSING: item=I201
819821 m18:: m19:: m20:: g ( ) ; // $ item=I103
820822 m23:: f ( ) ; // $ item=I108
821823 m24:: f ( ) ; // $ item=I121
You can’t perform that action at this time.
0 commit comments