Skip to content

Commit f23d33f

Browse files
author
aBothe
committed
[tests] Removed invalid test
1 parent 24b9a9b commit f23d33f

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

Tests/ResolutionTests.cs

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1246,24 +1246,6 @@ class C(U: A!W, W){ W item; }
12461246
Assert.That(ct.DeducedTypes.Count, Is.EqualTo(2));
12471247
}
12481248

1249-
[Test]
1250-
public void TemplateParamDeduction14()
1251-
{
1252-
var ctxt = CreateCtxt("mod", @"module mod;
1253-
class A(T) {}
1254-
class B{ class SubClass; }
1255-
class C(A!X.SubClass, X) {}
1256-
");
1257-
1258-
ITypeDeclaration td;
1259-
AbstractType t;
1260-
1261-
td = DParser.ParseBasicType("C!(A!B)"); // TODO: Elaborate behavior in dmd
1262-
t = TypeDeclarationResolver.ResolveSingle(td, ctxt);
1263-
1264-
Assert.That(t, Is.TypeOf(typeof(ClassType)));
1265-
}
1266-
12671249
[Test]
12681250
public void TemplateArgAsBasetype()
12691251
{

0 commit comments

Comments
 (0)