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