blob: 8415c698f3485de4bd8c374b38c46e505d30e66e [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 %s -verify -fsyntax-only
Anders Carlssonb90052a2009-02-25 17:19:08 +00002
3@class NSString;
4
5void c1(id *a);
6
7void t1()
8{
9 NSString *s __attribute((cleanup(c1)));
10}