blob: 94381f2033a5b6fda7af0a368d1e100cff329f70 [file] [log] [blame]
Douglas Gregor6aa52ec2011-08-26 23:56:07 +00001
2
3
Douglas Gregorfac4ece2011-08-19 02:29:29 +00004// in diamond-bottom.h: expected-note{{passing argument to parameter 'x' here}}
Douglas Gregor6aa52ec2011-08-26 23:56:07 +00005
6__import__ diamond_bottom;
7
Douglas Gregorfac4ece2011-08-19 02:29:29 +00008void test_diamond(int i, float f, double d, char c) {
9 top(&i);
10 left(&f);
11 right(&d);
12 bottom(&c);
13 bottom(&d); // expected-warning{{incompatible pointer types passing 'double *' to parameter of type 'char *'}}
Douglas Gregor211f6e82011-08-20 04:39:52 +000014
15 // Names in multiple places in the diamond.
16 top_left(&c);
Douglas Gregor0c02ada2011-08-20 05:09:43 +000017
18 left_and_right(&i);
19 struct left_and_right lr;
20 lr.left = 17;
Douglas Gregorfac4ece2011-08-19 02:29:29 +000021}
22
Douglas Gregor6aa52ec2011-08-26 23:56:07 +000023// RUN: %clang_cc1 -emit-module -o %T/diamond_top.pcm %S/Inputs/diamond_top.h
24// RUN: %clang_cc1 -I %T -emit-module -o %T/diamond_left.pcm %S/Inputs/diamond_left.h
25// RUN: %clang_cc1 -I %T -emit-module -o %T/diamond_right.pcm %S/Inputs/diamond_right.h
26// RUN: %clang_cc1 -I %T -emit-module -o %T/diamond_bottom.pcm %S/Inputs/diamond_bottom.h
27// RUN: %clang_cc1 -I %T %s -verify