git/t/t4018/swift-generic-subscript

8 lines
132 B
Plaintext

struct Container {
subscript<RIGHT>(index: Int) -> Int {
let a = 0
// a comment
return ChangeMe
}
}