aboutsummaryrefslogtreecommitdiff
path: root/test/Modules/macros.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/Modules/macros.c')
-rw-r--r--test/Modules/macros.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/test/Modules/macros.c b/test/Modules/macros.c
index 8fefe7a9cf..578e09fbda 100644
--- a/test/Modules/macros.c
+++ b/test/Modules/macros.c
@@ -9,8 +9,6 @@
#__export_macro__ INTEGER
#__export_macro__ DOUBLE
-int (INTEGER);
-
#else
__import_module__ macros;
@@ -32,7 +30,4 @@ DOUBLE *dp = &d;
#__export_macro__ WIBBLE // expected-error{{no macro named 'WIBBLE' to export}}
-void f() {
- int i = INTEGER; // the value was exported, the macro was not.
-}
#endif