mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 20:42:21 +02:00
Unspec variation base fix, debugger default params, debug enum type
This commit is contained in:
parent
c076c7d3a6
commit
cee266d6e6
9 changed files with 116 additions and 30 deletions
|
@ -5,6 +5,22 @@ namespace Tests
|
|||
{
|
||||
class Generics2
|
||||
{
|
||||
class ClassA<T, T2>
|
||||
{
|
||||
public virtual int32 GetWidth()
|
||||
{
|
||||
return 123;
|
||||
}
|
||||
}
|
||||
|
||||
class ClassB<T> : ClassA<T, T>
|
||||
{
|
||||
public override int32 GetWidth()
|
||||
{
|
||||
return base.GetWidth();
|
||||
}
|
||||
}
|
||||
|
||||
struct TestFunc<T, Del>
|
||||
{
|
||||
private int mId;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue