This commit is contained in:
2022-08-21 00:51:28 +01:00
parent dc1914b9ed
commit 9c995830e2
3 changed files with 10 additions and 2 deletions

View File

@@ -46,7 +46,7 @@ var a = 1;
print a;
//test scope will shadow higher scope on redefine
var b = 3;
var b: int = 3;
{
var b = 4;
print b;