solidity/test/libsolidity/ASTJSON/not_existing_import.sol
2020-09-30 16:57:49 +02:00

9 lines
141 B
Solidity

import "notexisting.sol" as NotExisting;
contract C is NotExisting.X
{
NotExisting.SomeStruct public myStruct;
constructor() {}
}
// ----