blob: 7b92c85046f0de6df47ddefdf2807c56eefd9d1d [file] [log] [blame]
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001// RUN: clang -emit-llvm %s -o - | grep _ZplRK1YRA100_P1X
2
3// FIXME: This test is intentionally trivial, because we can't yet
4// CodeGen anything real in C++.
5struct X { };
6struct Y { };
7
8bool operator+(const Y&, X* (&xs)[100]) { return false; }
9