summaryrefslogtreecommitdiff
path: root/t/t4018/swift-generic-subscript
blob: 423cb589412ea5708261a8f41d5895ba499d6016 (plain)
1
2
3
4
5
6
7
struct Container {
    subscript<RIGHT>(index: Int) -> Int {
        let a = 0
        // a comment
        return ChangeMe
    }
}