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
72 lines
1.0 KiB
Solidity
72 lines
1.0 KiB
Solidity
library L { event E(uint8); }
|
|
|
|
contract B {
|
|
constructor() {
|
|
emit L.E(0);
|
|
}
|
|
}
|
|
|
|
contract C is B {}
|
|
|
|
// ----
|
|
// :B
|
|
// [
|
|
// {
|
|
// "inputs": [],
|
|
// "stateMutability": "nonpayable",
|
|
// "type": "constructor"
|
|
// },
|
|
// {
|
|
// "anonymous": false,
|
|
// "inputs":
|
|
// [
|
|
// {
|
|
// "indexed": false,
|
|
// "internalType": "uint8",
|
|
// "name": "",
|
|
// "type": "uint8"
|
|
// }
|
|
// ],
|
|
// "name": "E",
|
|
// "type": "event"
|
|
// }
|
|
// ]
|
|
//
|
|
//
|
|
// :C
|
|
// [
|
|
// {
|
|
// "anonymous": false,
|
|
// "inputs":
|
|
// [
|
|
// {
|
|
// "indexed": false,
|
|
// "internalType": "uint8",
|
|
// "name": "",
|
|
// "type": "uint8"
|
|
// }
|
|
// ],
|
|
// "name": "E",
|
|
// "type": "event"
|
|
// }
|
|
// ]
|
|
//
|
|
//
|
|
// :L
|
|
// [
|
|
// {
|
|
// "anonymous": false,
|
|
// "inputs":
|
|
// [
|
|
// {
|
|
// "indexed": false,
|
|
// "internalType": "uint8",
|
|
// "name": "",
|
|
// "type": "uint8"
|
|
// }
|
|
// ],
|
|
// "name": "E",
|
|
// "type": "event"
|
|
// }
|
|
// ]
|