1/*
2 * Copyright (c) 2010 Apple Inc. All rights reserved.
3 *
4 * @APPLE_LLVM_LICENSE_HEADER@
5 */
6
7//
8//  retainproperty.m
9//  bocktest
10//
11//  Created by Blaine Garst on 3/21/08.
12//  Copyright 2008 __MyCompanyName__. All rights reserved.
13//
14
15// TEST_CFLAGS -framework Foundation
16
17
18#include <stdio.h>
19#include "test.h"
20
21@interface TestObject {
22
23}
24@property(copy, readonly) int (^getInt)(void);
25@end
26
27
28
29int main() {
30    succeed(__FILE__);
31}
32