2 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
3 // See https://llvm.org/LICENSE.txt for license information.
4 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
10 // Created by Blaine Garst on 5/13/08.
18 // CONFIG rdar://6255170
25 bumpi
= Block_copy(^{ ++i
; });
26 geti
= Block_copy(^{ return i
; });
29 int main(int argc
, char *argv
[]) {
35 printf("*** %s didn't update i\n", argv
[0]);
38 printf("%s: success\n", argv
[0]);