good first issuehelp wanted
仓库指标
- Star
- (4,769 star)
- PR 合并指标
- (平均合并 54天 9小时) (30 天内合并 2 个 PR)
描述
% cat test.sol
pragma solidity >= 0.8.19;
interface IFoo{}
contract Foo is IFoo {}
abstract contract Bar is Foo {}
interface IBaz{}
contract Baz is Bar, IBaz{}
% slither test.sol --print inheritance
+ Baz
-> Bar, IBaz
, [Foo, IFoo]
It looks like we added unnecessary carriage return to the output at some point