mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-27 23:38:59 -04:00
9 lines
106 B
C
9 lines
106 B
C
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
|
|
|
|
void foo()
|
|
{
|
|
char *ap;
|
|
ap[1] == '-' && ap[2] == 0;
|
|
}
|
|
|