You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
450 B
18 lines
450 B
4 months ago
|
// RUN: %clangxx_asan -O0 %s -o %t && not %run %t 2>&1 | FileCheck %s
|
||
|
|
||
|
namespace XXX {
|
||
|
class YYY {
|
||
|
public:
|
||
|
static char ZZZ[];
|
||
|
};
|
||
|
char YYY::ZZZ[] = "abc";
|
||
|
}
|
||
|
|
||
|
int main(int argc, char **argv) {
|
||
|
return (int)XXX::YYY::ZZZ[argc + 5]; // BOOM
|
||
|
// CHECK: {{READ of size 1 at 0x.*}}
|
||
|
// CHECK: {{0x.* is located 2 bytes to the right of global variable}}
|
||
|
// CHECK: 'XXX::YYY::ZZZ' {{.*}} of size 4
|
||
|
// CHECK: 'XXX::YYY::ZZZ' is ascii string 'abc'
|
||
|
}
|