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:
parent
75dd1a4213
commit
46a7e0568d
4 changed files with 124 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue