mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Support multiple sources for syntax tests.
This commit is contained in:
committed by
chriseth
parent
95d426bd88
commit
6ed219ebe8
@@ -0,0 +1,10 @@
|
||||
==== Source: A ====
|
||||
contract A {
|
||||
function g(uint256 x) public view returns(uint256) { return x; }
|
||||
}
|
||||
==== Source: B ====
|
||||
contract B is A {
|
||||
function f(uint256 x) public view returns(uint256) { return x; }
|
||||
}
|
||||
// ----
|
||||
// DeclarationError: (B:14-15): Identifier not found or not unique.
|
||||
Reference in New Issue
Block a user