mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
28 lines
370 B
Solidity
28 lines
370 B
Solidity
==== Source: A ====
|
|
pragma abicoder v2;
|
|
|
|
struct Data {
|
|
bool flag;
|
|
}
|
|
|
|
contract A {
|
|
function get() public view returns (Data memory) {}
|
|
}
|
|
|
|
contract B {
|
|
modifier validate() {
|
|
A(address(0x00)).get();
|
|
_;
|
|
}
|
|
}
|
|
==== Source: B ====
|
|
import "A";
|
|
|
|
contract C is B {
|
|
function foo()
|
|
public
|
|
validate()
|
|
{}
|
|
}
|
|
// ----
|