2018-03-15 23:47:12 +00:00
|
|
|
contract test {
|
|
|
|
function f() pure public {
|
|
|
|
x = 3;
|
|
|
|
uint x;
|
|
|
|
}
|
|
|
|
}
|
2018-06-15 10:30:28 +00:00
|
|
|
// ----
|
2020-06-19 00:26:46 +00:00
|
|
|
// DeclarationError 7576: (55-56): Undeclared identifier. "x" is not (or not yet) visible at this point.
|