YouCompleteMe/cpp/llvm/tools/clang/test/CodeGenCXX/sel-address.mm
Strahinja Val Markovic 1f51a89d39 Adding more llvm/clang files
These were ignored by git accidentally. We want ALL OF THEM since they all came
in the llvm/clang source distribution.
2012-07-05 17:55:45 -07:00

15 lines
279 B
Plaintext

// RUN: %clang_cc1 %s -verify -emit-llvm -o %t
// pr7390
void f(const SEL& v2) {}
void g() {
f(@selector(dealloc));
SEL s = @selector(dealloc);
SEL* ps = &s;
@selector(dealloc) = s; // expected-error {{expression is not assignable}}
SEL* ps2 = &@selector(dealloc);
}