mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
9 lines
328 B
Swift
9 lines
328 B
Swift
// RUN: %target-swift-emit-module-interface(%t.swiftinterface) %s
|
|
// RUN: %target-swift-typecheck-module-from-interface(%t.swiftinterface)
|
|
// RUN: %FileCheck %s < %t.swiftinterface
|
|
|
|
// CHECK: @_show_in_interface public protocol _UnderscoredProtocol {
|
|
// CHECK-NEXT: }
|
|
@_show_in_interface
|
|
public protocol _UnderscoredProtocol {}
|