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

11 lines
195 B
Solidity

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