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
46 lines
629 B
Solidity
46 lines
629 B
Solidity
library L {
|
|
event e();
|
|
}
|
|
contract C {
|
|
constructor() {
|
|
emit L.e();
|
|
}
|
|
function f() public {
|
|
emit L.e();
|
|
}
|
|
}
|
|
|
|
// ----
|
|
// :C
|
|
// [
|
|
// {
|
|
// "inputs": [],
|
|
// "stateMutability": "nonpayable",
|
|
// "type": "constructor"
|
|
// },
|
|
// {
|
|
// "anonymous": false,
|
|
// "inputs": [],
|
|
// "name": "e",
|
|
// "type": "event"
|
|
// },
|
|
// {
|
|
// "inputs": [],
|
|
// "name": "f",
|
|
// "outputs": [],
|
|
// "stateMutability": "nonpayable",
|
|
// "type": "function"
|
|
// }
|
|
// ]
|
|
//
|
|
//
|
|
// :L
|
|
// [
|
|
// {
|
|
// "anonymous": false,
|
|
// "inputs": [],
|
|
// "name": "e",
|
|
// "type": "event"
|
|
// }
|
|
// ]
|