Skip to content

Commit 8a18a7d

Browse files
authored
Merge pull request #9095 from slavapestov/subclass-existential-typos
Fix typos
2 parents 0ad6f73 + 906567c commit 8a18a7d

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Swift 4.0
3939

4040
class Wall : Canvas, Paintable {
4141
func paint() { ... }
42-
}```
42+
}
4343

4444
func render(_: Canvas & Paintable) { ... }
4545

test/Interpreter/subclass_existentials.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,8 +163,6 @@ SubclassExistentialsTestSuite.test("Metadata instantiation") {
163163
expectFalse(((Base<Int>) & Q).self == (Q & (Base<Int>) & AnyObject).self)
164164
}
165165

166-
// FIXME: Not implemented yet
167-
168166
SubclassExistentialsTestSuite.test("Metadata to string") {
169167
expectEqual("Base<Int> & P", String(describing: ((Base<Int>) & P).self))
170168
expectEqual("Base<Int> & P & Q", String(describing: ((Base<Int>) & P & Q).self))

0 commit comments

Comments
 (0)