Skip to content

Commit df66f9f

Browse files
committed
Fix a test now that we're dumping more
1 parent 87047d0 commit df66f9f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/Generics/conditional_conformances.swift

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// RUN: %target-typecheck-verify-swift -typecheck -verify
2-
// RUN: %target-typecheck-verify-swift -typecheck -debug-generic-signatures %s > %t.dump 2>&1
2+
// RUN: %target-typecheck-verify-swift -typecheck -debug-generic-signatures > %t.dump 2>&1
33
// RUN: %FileCheck %s < %t.dump
44

55
protocol P1 {}
@@ -20,6 +20,9 @@ func takes_P2<X: P2>(_: X) {}
2020
// expected-note@-6 {{candidate requires that 'C1' inherit from 'Int' (requirement specified as 'Int' : 'C1')}}
2121
func takes_P5<X: P5>(_: X) {}
2222

23+
// Skip the first generic signature declcontext dump
24+
// CHECK-LABEL: ExtensionDecl line={{.*}} base=Free
25+
2326
struct Free<T> {}
2427
// CHECK-LABEL: ExtensionDecl line={{.*}} base=Free
2528
// CHECK-NEXT: (normal_conformance type=Free<T> protocol=P2

0 commit comments

Comments
 (0)