| Richard Pennington | 14cc983 | 2010-02-23 12:22:13 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -fsyntax-only -W -Wall -Werror -verify %s |
| 2 | |||||
| 3 | int f(int i __attribute__((__unused__))) | ||||
| 4 | { | ||||
| 5 | return 0; | ||||
| 6 | } | ||||
| 7 | int g(i) | ||||
| 8 | int i __attribute__((__unused__)); | ||||
| 9 | { | ||||
| 10 | return 0; | ||||
| 11 | } | ||||