blob: 763816ebe60a2467c77f2c72430b4fca4bd6180f [file] [log] [blame]
// RUN: %target-swift-frontend -emit-sil -module-name main -primary-file %s %S/Inputs/protocol-conformance-sr6839-other.swift | %FileCheck -check-prefix CHECK-FIRST %s
// RUN: %target-swift-frontend -emit-sil -module-name main %s -primary-file %S/Inputs/protocol-conformance-sr6839-other.swift | %FileCheck -check-prefix CHECK-SECOND %s
// We need to consistently pick where the witness table for _PositionRelation :
// RawRepresentable goes.
// CHECK-FIRST: sil_witness_table hidden _PositionRelation: RawRepresentable
// CHECK-SECOND-NOT: sil_witness_table hidden _PositionRelation: RawRepresentable
enum _PositionRelation: Int {
case before = 0
}