mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
I could never remember the command to run batch code completion tests. Add a lit substitution for it.
17 lines
415 B
Swift
17 lines
415 B
Swift
// RUN: %batch-code-completion
|
|
|
|
// 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
|