blob: be4fb347b396239014421520f4c2fb8a7d9819d9 [file] [log] [blame]
// RUN: rm -rf %t && mkdir %t
// RUN: cp %s %t/main.swift
// RUN: %target-swift-frontend -parse -primary-file %t/main.swift -emit-reference-dependencies-path - > %t.swiftdeps
// SR-1267, SR-1270
protocol Protocol {}
class ConformingClass: Protocol {}
class BaseClass<T: Protocol> {}
class ConcreteClass<T: ConformingClass> : BaseClass<T> {}