aboutsummaryrefslogtreecommitdiffstats
path: root/asn1c/tests/check-42.cc
blob: c2ec29ba0199b327d3cc3a5250a91adc3b2277b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * This file checks that the output may be compiled by the C++ compiler.
 */
#undef	NDEBUG
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <string.h>
#include <assert.h>

#include <VariablePart.h>

int
main() {
	VariablePart_t t;

	t.present = VariablePart_PR_vrange;

	return 0;
}