mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 20:42:21 +02:00
Fixed extension initializers and dtors. [NoExtension]. Extension warning
This commit is contained in:
parent
6e71cbc765
commit
b6db69d2b0
15 changed files with 235 additions and 64 deletions
|
@ -2,15 +2,15 @@ using System;
|
|||
|
||||
extension LibClassA
|
||||
{
|
||||
public int32 mC = GetVal(9, "TestsB.LibClassA.mC");
|
||||
public int32 mC = GetVal(9, 10000, "TestsB.LibClassA.mC");
|
||||
|
||||
public this()
|
||||
public new this()
|
||||
{
|
||||
PrintF("TestB.LibClassA()\n");
|
||||
mB += 10000;
|
||||
}
|
||||
|
||||
public int GetVal2()
|
||||
public new int GetVal2()
|
||||
{
|
||||
return 11;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue