tst.const.d revision 246393
1210284Sjmallett/*
2210284Sjmallett * CDDL HEADER START
3210284Sjmallett *
4210284Sjmallett * This file and its contents are supplied under the terms of the
5210284Sjmallett * Common Development and Distribution License ("CDDL"), version 1.0.
6210284Sjmallett * You may only use this file in accordance with the terms of version
7210284Sjmallett * 1.0 of the CDDL.
8210284Sjmallett *
9210284Sjmallett * A full copy of the text of the CDDL should have accompanied this
10210284Sjmallett * source.  A copy of the CDDL is also available via the Internet at
11210284Sjmallett * http://www.illumos.org/license/CDDL.
12210284Sjmallett *
13210284Sjmallett * CDDL HEADER END
14210284Sjmallett */
15210284Sjmallett
16210284Sjmallett/*
17210284Sjmallett * Copyright (c) 2012 by Delphix. All rights reserved.
18210284Sjmallett */
19210284Sjmallett
20210284Sjmallett/*
21210284Sjmallett * Make sure we can scope types with modifiers.
22210284Sjmallett */
23210284Sjmallett
24210284SjmallettBEGIN
25210284Sjmallett{
26210284Sjmallett	trace((D`int *)0);
27210284Sjmallett	trace((const D`int *)0);
28210284Sjmallett	exit(0);
29210284Sjmallett}
30210284Sjmallett