summaryrefslogtreecommitdiff
path: root/t/t4018/swift-attribute-with-args
blob: 22b1ee32f110bd9f92654854e84eea231d37fcb4 (plain)
1
2
3
4
5
6
7
struct View {
    @available(iOS 13, *) public func RIGHT() {
        let a = 1
        // a comment
        print(ChangeMe)
    }
}