solidity/test/libsolidity/syntaxTests/imports/name_clash_in_import_contract_struct_5.sol
Daniel Kirchner fae0e10d26 Import tests.
2019-09-02 11:17:57 +02:00

6 lines
99 B
Solidity

==== Source: a ====
contract A {}
==== Source: b ====
import {A} from "a";
struct B { uint256 a; }