We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 223249f commit b0ce1c4Copy full SHA for b0ce1c4
src/tests/Regressions/coreclr/103365/103365.cs
@@ -39,13 +39,12 @@ string IBaseInterface<BasicDerivedClass>.explicitDeclaration()
39
public static class Test_Issue103365
40
{
41
[Fact]
42
- public static void Main ()
43
- {
+ public static void Test()
+ {
44
var instances = new IBaseInterface<BasicBaseClass>[2];
45
instances[0] = new BasicBaseClass();
46
instances[1] = new BasicDerivedClass();
47
Assert.Equal("BasicBaseClass", instances[0].explicitDeclaration());
48
Assert.Equal("BasicDerivedClass", instances[1].explicitDeclaration());
49
- }
+ }
50
}
51
-
0 commit comments