aboutsummaryrefslogtreecommitdiff
path: root/test/C++Frontend/ConstructorDestructorAttributes.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/C++Frontend/ConstructorDestructorAttributes.c')
-rw-r--r--test/C++Frontend/ConstructorDestructorAttributes.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/test/C++Frontend/ConstructorDestructorAttributes.c b/test/C++Frontend/ConstructorDestructorAttributes.c
deleted file mode 100644
index 1a5fb9c4de..0000000000
--- a/test/C++Frontend/ConstructorDestructorAttributes.c
+++ /dev/null
@@ -1,14 +0,0 @@
-#include <stdio.h>
-
-void ctor() __attribute__((constructor));
-
-void ctor() {
- printf("Create!\n");
-}
-void dtor() __attribute__((destructor));
-
-void dtor() {
- printf("Create!\n");
-}
-
-int main() { return 0; }