1 2 3 4 5 6 7 8 9
contract C { uint immutable x = 0; uint y = 0; function f() internal { y = x + 1; } } // ----