mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-13 19:24:21 +00:00
c6e68daac0
llvm-svn: 166280
11 lines
254 B
Plaintext
11 lines
254 B
Plaintext
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
// expected-no-diagnostics
|
|
|
|
extern "C" id (*_dealloc)(id) ;
|
|
|
|
void foo() {
|
|
extern void *_original_dealloc;
|
|
if (_dealloc == _original_dealloc) { }
|
|
if (_dealloc != _original_dealloc) { }
|
|
}
|