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 47064a0 commit d3950e5Copy full SHA for d3950e5
test/Interop/Cxx/templates/dependent-types.swift
@@ -35,6 +35,8 @@ DependentTypesTestSuite.test("Multiple dependent arguments (not inferred).") {
35
expectEqual(m.getValue(), 42)
36
}
37
38
+// We still have some problems calling methods on Windows: SR-13129 and rdar://88391102
39
+#if !os(Windows)
40
DependentTypesTestSuite.test("Function template methods") {
41
let m = M<Int>(value: 42)
42
let m2 = m.memberDependentReturnType(CInt(32)) as! M<CInt>
@@ -57,5 +59,6 @@ DependentTypesTestSuite.test("Function template methods (static)") {
57
59
let m2 = M<Int>.memberDependentReturnTypeStatic(CInt(32)) as! M<CInt>
58
60
expectEqual(m2.getValue(), 32)
61
62
+#endif // Windows
63
64
runAllTests()
0 commit comments