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

11 lines
186 B
Solidity

==== Source: A ====
contract A {
function g() public { x; }
}
==== Source: B ====
contract B {
function f() public { }
}
// ----
// DeclarationError: (A:36-37): Undeclared identifier.