mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
1e63615206
Update tests. Additional tests Revert changes to the Natspec
63 lines
826 B
Solidity
63 lines
826 B
Solidity
interface B {
|
|
event EB();
|
|
}
|
|
|
|
contract C is B {
|
|
event EC();
|
|
}
|
|
|
|
contract D is C {
|
|
event ED();
|
|
}
|
|
|
|
// ----
|
|
// :B
|
|
// [
|
|
// {
|
|
// "anonymous": false,
|
|
// "inputs": [],
|
|
// "name": "EB",
|
|
// "type": "event"
|
|
// }
|
|
// ]
|
|
//
|
|
//
|
|
// :C
|
|
// [
|
|
// {
|
|
// "anonymous": false,
|
|
// "inputs": [],
|
|
// "name": "EB",
|
|
// "type": "event"
|
|
// },
|
|
// {
|
|
// "anonymous": false,
|
|
// "inputs": [],
|
|
// "name": "EC",
|
|
// "type": "event"
|
|
// }
|
|
// ]
|
|
//
|
|
//
|
|
// :D
|
|
// [
|
|
// {
|
|
// "anonymous": false,
|
|
// "inputs": [],
|
|
// "name": "EB",
|
|
// "type": "event"
|
|
// },
|
|
// {
|
|
// "anonymous": false,
|
|
// "inputs": [],
|
|
// "name": "EC",
|
|
// "type": "event"
|
|
// },
|
|
// {
|
|
// "anonymous": false,
|
|
// "inputs": [],
|
|
// "name": "ED",
|
|
// "type": "event"
|
|
// }
|
|
// ]
|