xref: /llvm-project/clang/test/SemaCXX/address-space-arithmetic.cpp (revision e95ee300c0530158d86430fd82ffabd36262e862)
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 
foo(int * p,int * l)3 int *foo(__attribute__((opencl_private)) int *p,
4          __attribute__((opencl_local)) int *l) {
5   return p - l; // expected-error {{arithmetic operation with operands of type  ('__private int *' and '__local int *') which are pointers to non-overlapping address spaces}}
6 }
7