repo.or.cz
/
clang.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
[Heikki Kultala] This patch contains the ABI changes for the TCE target.
[clang.git]
/
test
/
SemaObjCXX
/
function-pointer-void-star.mm
blob
8d3d6251734f43cb5810af9ac71a4b8433f8221f
1
// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3
extern "C" id (*_dealloc)(id) ;
4
5
void foo() {
6
extern void *_original_dealloc;
7
if (_dealloc == _original_dealloc) { }
8
if (_dealloc != _original_dealloc) { }
9
}