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 14db05e commit 8f0cfe8Copy full SHA for 8f0cfe8
test/Generics/non_generic_derived_class.swift
@@ -9,3 +9,10 @@ class Base<T> {
9
class Derived : Base<Int> {}
10
11
var a = Derived.f(42)
12
+
13
+protocol SR9160_EmptyProtocol {}
14
+class SR9160_AbstractFoobar<Foo> {}
15
+// This used to cause the swift compiler to never finish compiling.
16
+final class SR9160_SomeFoobar: SR9160_AbstractFoobar<SR9160_SomeFoobar.Foo> {
17
+ enum Foo: SR9160_EmptyProtocol {}
18
+}
0 commit comments