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
12 lines
189 B
Solidity
12 lines
189 B
Solidity
// SPDX-License-Identifier: GPL-3.0
|
|
library L {
|
|
event E();
|
|
function f() internal { emit E(); }
|
|
}
|
|
contract C {
|
|
event H();
|
|
function g() public { L.f(); emit H(); }
|
|
}
|
|
|
|
// ----
|