mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
12 lines
209 B
Solidity
12 lines
209 B
Solidity
contract C {
|
|
uint immutable u;
|
|
bool immutable b;
|
|
address immutable a;
|
|
|
|
function get() public returns (uint, bool, address) {
|
|
return (u, b, a);
|
|
}
|
|
}
|
|
// ----
|
|
// get() -> 0, false, 0x0
|