1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 11:38:21 +02:00

Extra test

This commit is contained in:
Brian Fiete 2020-09-22 10:35:58 -07:00
parent f949a02840
commit 8af5575f42

View file

@ -27,6 +27,20 @@ namespace IDETest
b = a;
}
public static void If3(out int a)
{
int b = 123;
if (b == 234)
{
a = 1;
}
else
{
a = 2;
return;
}
}
public void For1(out int a)
{
for (int b < 2)