summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.74.0/tests/expected/oc/50802-available.m
blob: 5054043a544b6fcddc40e2f1cacb7e2b2a44e983 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
-(void) test {
    if (@available(macOS 10.12.2, *)) {
        self.automaticTextCompletionEnabled = YES;
        self.allowsCharacterPickerTouchBarItem = NO;
    }

    if (@available( macOS 10.12,*)) {
        self.automaticTextCompletionEnabled = YES;
        self.allowsCharacterPickerTouchBarItem = NO;
    }

}