solidity/test/libsolidity/ASTJSON/not_existing_import.sol

9 lines
141 B
Solidity
Raw Normal View History

2020-07-08 20:08:50 +00:00
import "notexisting.sol" as NotExisting;
contract C is NotExisting.X
{
NotExisting.SomeStruct public myStruct;
constructor() {}
}
// ----