blob: a99889237c24f955751a5f16959f271f82917c54 [file] [log] [blame]
Douglas Gregorfffd93f2009-05-01 21:53:04 +00001// RUN: clang -fsyntax-only -fmessage-length=72 %s
2
3/* It's tough to verify the results of this test mechanically, since
4 the length of the filename (and, therefore, how the word-wrapping
5 behaves) changes depending on where the test-suite resides in the
6 file system. */
7void f(int, float, char, float);
8
9void g() {
10 int (*fp1)(int, float, short, float) = f;
11
12 int (*fp2)(int, float, short, float) = f;
13}