mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
These test lines weren't actually providing any value and were annoying to write. Let's jut remove them.
18 lines
539 B
Swift
18 lines
539 B
Swift
// RUN: %empty-directory(%t)
|
|
// RUN: %target-swift-ide-test -batch-code-completion -source-filename %s -filecheck %raw-FileCheck -completion-output-dir %t
|
|
|
|
// https://github.com/apple/swift/issues/55423
|
|
|
|
struct ButtonStyleConfiguration {}
|
|
|
|
protocol ButtonStyle {
|
|
typealias Configuration = ButtonStyleConfiguration
|
|
}
|
|
|
|
struct BorderedBarButtonStyle: ButtonStyle {
|
|
init() { }
|
|
func makeBody(configuration: #^COMPLETE^#) {}
|
|
}
|
|
|
|
// COMPLETE: Decl[TypeAlias]/Super: Configuration[#ButtonStyleConfiguration#]; name=Configuration
|