зеркало из https://github.com/microsoft/clang.git
Migrate 2007-01-02-UnboundedArray.cpp from llvm/test/FrontendC++.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@138138 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
335552e3ff
Коммит
3b20b9ee0d
|
@ -0,0 +1,14 @@
|
|||
// Make sure unbounded arrays compile with debug information.
|
||||
//
|
||||
// RUN: %clang_cc1 -emit-llvm -g %s -o -
|
||||
|
||||
// PR1068
|
||||
|
||||
struct Object {
|
||||
char buffer[];
|
||||
};
|
||||
|
||||
int main(int argc, char** argv) {
|
||||
new Object;
|
||||
return 0;
|
||||
}
|
Загрузка…
Ссылка в новой задаче