blob: ff6322d49d689997c1d9dc18f441727f7ded9388 [file] [log] [blame]
Douglas Gregor58e97972011-09-06 16:38:46 +00001// Test with PCH
Richard Smith762bb9d2011-10-13 22:29:44 +00002// RUN: %clang_cc1 -std=c++11 -x c++-header -emit-pch -o %t %s
3// RUN: %clang_cc1 -std=c++11 -include-pch %t -verify %s
Andy Gibbs8e8fb3b2012-10-19 12:44:48 +00004// expected-no-diagnostics
Douglas Gregor58e97972011-09-06 16:38:46 +00005
6// PR10847
7#ifndef HEADER
8#define HEADER
9struct NSSize {
10 double width;
11 double height;
12};
13typedef struct NSSize NSSize;
14
15static inline NSSize NSMakeSize(double w, double h) {
16 NSSize s = { w, h };
17 return s;
18}
19#else
20float test(float v1, float v2) {
21 NSSize s = NSMakeSize(v1, v2);
22 return s.width;
23}
24#endif