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

New tests

This commit is contained in:
Brian Fiete 2019-11-30 13:18:07 -08:00
parent a4476332fe
commit cbae124dd5
4 changed files with 94 additions and 5 deletions

View file

@ -31,9 +31,17 @@ class LibClassA
{
return 9;
}
public static int GetVal3(Object obj)
{
return 30;
}
}
class LibClassB
{
//public uint8* mA = append uint8[10];
public static int DoGetVal3<T>(T val)
{
return LibClassA.GetVal3(val);
}
}