You've already forked linux-packaging-mono
Imported Upstream version 3.12.0
Former-commit-id: cf92446697332992ec36726e78eb8703e1f259d7
This commit is contained in:
@ -22,6 +22,10 @@ public class TestsBase
|
||||
static string base_static_s = "C";
|
||||
#pragma warning restore 0414
|
||||
#pragma warning restore 0169
|
||||
|
||||
public virtual string virtual_method () {
|
||||
return "V1";
|
||||
}
|
||||
}
|
||||
|
||||
public enum AnEnum {
|
||||
@ -1365,6 +1369,10 @@ public class Tests : TestsBase, ITest2
|
||||
j = 5;
|
||||
set_ip_2 ();
|
||||
}
|
||||
|
||||
public override string virtual_method () {
|
||||
return "V2";
|
||||
}
|
||||
}
|
||||
|
||||
class TypeLoadClass {
|
||||
|
Reference in New Issue
Block a user