f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
14 lines
279 B
Text
14 lines
279 B
Text
// 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);
|
|
}
|