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

Tests for new visibility rules

This commit is contained in:
Brian Fiete 2020-07-01 12:06:51 -07:00
parent 75dd1a4213
commit 46a7e0568d
4 changed files with 124 additions and 0 deletions

View file

@ -2,6 +2,11 @@ namespace LibC
{
class LibC0
{
public static int GetOverload0<T>() where T : var
{
T val = default;
return Overload0(val);
}
}
}
@ -21,3 +26,10 @@ extension LibClassA
}
}
static
{
public static int Overload0(int32 a)
{
return 3;
}
}