forked from OSchip/llvm-project
10 lines
177 B
C
10 lines
177 B
C
|
// RUN: clang %s -E 2>&1 | not grep error
|
||
|
|
||
|
#define strrchr rindex
|
||
|
#pragma GCC poison rindex
|
||
|
|
||
|
// Can poison multiple times.
|
||
|
#pragma GCC poison rindex
|
||
|
|
||
|
strrchr(some_string, 'h');
|