2 // 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
4 // expected-no-diagnostics
13 typedef struct NSSize NSSize
;
15 static inline NSSize
NSMakeSize(double w
, double h
) {
20 float test(float v1
, float v2
) {
21 NSSize s
= NSMakeSize(v1
, v2
);