mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
8 lines
171 B
Swift
8 lines
171 B
Swift
class UserCollection {
|
|
static let staticMember = "ABC"
|
|
func test() {
|
|
// RUN: %sourcekitd-test -req=cursor -pos=%(line + 1):10 %s -- %s
|
|
Self.staticMember
|
|
}
|
|
}
|