Skip to content

Commit 16206fa

Browse files
committed
[embedded] Enable all tests in general-existentials1.swift
1 parent a5aa929 commit 16206fa

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

test/embedded/general-existentials1.swift

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,6 @@ public class Derived2<T>: Base<T> {
132132
public override func bar() { print("Derived2.bar()") }
133133
}
134134

135-
/*
136135
public func takes_p1(_ p: P1) {
137136
p.normal()
138137
}
@@ -248,7 +247,6 @@ struct K4<I: BinaryInteger>: Q {
248247
func testP4() -> any P4 {
249248
return C4(t: K4(x: 437))
250249
}
251-
*/
252250

253251
@main
254252
struct Main {
@@ -285,17 +283,15 @@ struct Main {
285283
// CHECK: Derived2.foo()
286284
// CHECK: Derived2.bar()
287285

288-
/*
289286

290287
testConditionalConformance(t: S(i: 27))
291-
// xCHECK: 27
288+
// CHECK: 27
292289

293290
testP3().foo()
294-
// xCHECK: 102
291+
// CHECK: 102
295292

296293
testP4().foo()
297-
// xCHECK: 437
298-
*/
294+
// CHECK: 437
299295
}
300296
}
301297

0 commit comments

Comments
 (0)