solidity/test/libsolidity/syntaxTests/imports/filename_with_period.sol
2019-08-19 14:45:26 +02:00

7 lines
199 B
Solidity

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