blob: 1d189817f871825377ee4ae42737ef195f58387f [file] [log] [blame]
// RUN: %target-swift-frontend -typecheck -primary-file %s %S/Inputs/enum_raw_representable_explicit_multi_file_2.swift
// RUN: %target-typecheck-verify-swift -primary-file %S/Inputs/enum_raw_representable_explicit_multi_file_2.swift
enum Foo: Int { case A }
extension Bar: RawRepresentable {}
enum Bas: Int { case A }
// expected-note@+1 {{'Bas' declares conformance to protocol 'RawRepresentable' here}}
extension Bas: RawRepresentable {}