// RUN: %target-typecheck-verify-swift -debug-generic-signatures 2>&1 | %FileCheck %s protocol Base { associatedtype T } // CHECK-LABEL: .Derived@ // CHECK-NEXT: Requirement signature: protocol Derived: Base & DoesNotExist { // expected-error {{cannot find type 'DoesNotExist' in scope}} func position(_: T) } // CHECK-LABEL: .OtherDerived@ // CHECK-NEXT: Requirement signature: protocol OtherDerived: Base {} // expected-error {{cannot find type 'DoesNotExist' in scope}}