hanchenye-llvm-project/clang/test/CodeGenCXX/sel-address.mm

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);
}