blob: c2ec29ba0199b327d3cc3a5250a91adc3b2277b4 [file] [log] [blame]
Lev Walkin87b1e1f2004-08-11 05:26:33 +00001/*
2 * This file checks that the output may be compiled by the C++ compiler.
3 */
4#undef NDEBUG
5#include <stdio.h>
6#include <stdlib.h>
7#include <sys/types.h>
8#include <string.h>
9#include <assert.h>
10
11#include <VariablePart.h>
12
13int
14main() {
15 VariablePart_t t;
16
17 t.present = VariablePart_PR_vrange;
18
19 return 0;
20}