Daniel Dunbar | d7d5f02 | 2009-03-24 02:24:46 +0000 | [diff] [blame] | 1 | // RUN: clang-cc %s -verify -fsyntax-only |
Anders Carlsson | b90052a | 2009-02-25 17:19:08 +0000 | [diff] [blame] | 2 | |
3 | @class NSString; | ||||
4 | |||||
5 | void c1(id *a); | ||||
6 | |||||
7 | void t1() | ||||
8 | { | ||||
9 | NSString *s __attribute((cleanup(c1))); | ||||
10 | } |