solidity/test/libsolidity/syntaxTests/imports/filename_with_period.sol
2022-04-01 23:41:18 -05:00

7 lines
223 B
Solidity

==== Source: a/.b.sol ====
contract B {}
==== Source: a/a.sol ====
import ".b.sol"; contract A is B {}
// ----
// ParserError 6275: (a/a.sol:0-16='import ".b.sol";'): Source ".b.sol" not found: File not supplied initially.