This website requires JavaScript.
Explore
Help
Sign In
cerc-io
/
solidity
Watch
16
Star
0
Fork
0
You've already forked solidity
mirror of
https://github.com/ethereum/solidity
synced
2023-10-03 13:03:40 +00:00
Code
Issues
Actions
Packages
Projects
Releases
Wiki
Activity
72671d6c88
solidity
/
test
/
libsolidity
/
syntaxTests
/
immutable
/
inheritance_wrong_ctor.sol
10 lines
103 B
Solidity
Raw
Normal View
History
Unescape
Escape
Validate immutable variables
2020-03-10 17:15:50 +00:00
contract
B
{
uint
immutable
x
=
4
;
}
contract
C
is
B
{
Update tests.
2020-06-23 12:14:24 +00:00
constructor
(
)
{
Validate immutable variables
2020-03-10 17:15:50 +00:00
x
=
3
;
}
}
Reference in New Issue
Copy Permalink