1246393Smm/*
2246393Smm * CDDL HEADER START
3246393Smm *
4246393Smm * This file and its contents are supplied under the terms of the
5246393Smm * Common Development and Distribution License ("CDDL"), version 1.0.
6246393Smm * You may only use this file in accordance with the terms of version
7246393Smm * 1.0 of the CDDL.
8246393Smm *
9246393Smm * A full copy of the text of the CDDL should have accompanied this
10246393Smm * source.  A copy of the CDDL is also available via the Internet at
11246393Smm * http://www.illumos.org/license/CDDL.
12246393Smm *
13246393Smm * CDDL HEADER END
14246393Smm */
15246393Smm
16246393Smm/*
17246393Smm * Copyright (c) 2012 by Delphix. All rights reserved.
18246393Smm */
19246393Smm
20246393Smm/*
21246393Smm * Make sure we can scope types with modifiers.
22246393Smm */
23246393Smm
24246393SmmBEGIN
25246393Smm{
26246393Smm	trace((D`int *)0);
27246393Smm	trace((const D`int *)0);
28246393Smm	exit(0);
29246393Smm}
30