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

6 lines
99 B
Solidity

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