mirror of https://github.com/crytic/slither
Fix using for when used with "this" (#2224)
parent
9bf4d07b04
commit
6620bc926e
Binary file not shown.
@ -0,0 +1,8 @@ |
||||
{ |
||||
"Lib": { |
||||
"f(Hello)": "digraph{\n0[label=\"Node Type: ENTRY_POINT 0\n\"];\n}\n" |
||||
}, |
||||
"Hello": { |
||||
"test()": "digraph{\n0[label=\"Node Type: ENTRY_POINT 0\n\"];\n0->1;\n1[label=\"Node Type: EXPRESSION 1\n\"];\n}\n" |
||||
} |
||||
} |
@ -0,0 +1,13 @@ |
||||
library Lib { |
||||
function f(Hello h) external { |
||||
|
||||
} |
||||
} |
||||
contract Hello { |
||||
using Lib for Hello; |
||||
|
||||
function test() external { |
||||
this.f(); |
||||
} |
||||
} |
||||
|
Loading…
Reference in new issue