1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-19 16:40:26 +02:00

Fixes for type initializer blocks

This commit is contained in:
Brian Fiete 2020-12-07 10:58:02 -08:00
parent 9cd47a784b
commit 34dcd47dd5
6 changed files with 98 additions and 11 deletions

View file

@ -49,6 +49,27 @@ extension LibClassA
}
}
namespace LibA
{
extension LibA3
{
public int mB = 7;
this
{
mA += 10;
}
}
extension LibA4
{
this
{
mA += 10;
}
}
}
static
{
public static int Overload0(int16 a)