mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
22 lines
417 B
Solidity
22 lines
417 B
Solidity
pragma abicoder v2;
|
|
library L {
|
|
struct S {
|
|
uint8 a;
|
|
int16 b;
|
|
}
|
|
event E(S indexed, S);
|
|
function f() internal {
|
|
S memory s;
|
|
emit E(s, s);
|
|
}
|
|
}
|
|
contract C {
|
|
constructor() {
|
|
L.f();
|
|
}
|
|
}
|
|
// ----
|
|
// constructor()
|
|
// ~ emit E((uint8,int16),(uint8,int16)): #0xad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5, 0x00, 0x00
|
|
// gas legacy: 150602
|