err.D_DECL_COMBO.badtype4.d revision 178476
1169689Skan/*
2169689Skan * CDDL HEADER START
3169689Skan *
4169689Skan * The contents of this file are subject to the terms of the
5169689Skan * Common Development and Distribution License (the "License").
6169689Skan * You may not use this file except in compliance with the License.
7169689Skan *
8169689Skan * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9169689Skan * or http://www.opensolaris.org/os/licensing.
10169689Skan * See the License for the specific language governing permissions
11169689Skan * and limitations under the License.
12169689Skan *
13169689Skan * When distributing Covered Code, include this CDDL HEADER in each
14169689Skan * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15169689Skan * If applicable, add the following below this CDDL HEADER, with the
16169689Skan * fields enclosed by brackets "[]" replaced with your own identifying
17169689Skan * information: Portions Copyright [yyyy] [name of copyright owner]
18169689Skan *
19169689Skan * CDDL HEADER END
20169689Skan */
21169689Skan
22169689Skan/*
23169689Skan * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
24169689Skan * Use is subject to license terms.
25169689Skan */
26169689Skan
27169689Skan#pragma	ident	"%Z%%M%	%I%	%E% SMI"
28169689Skan
29/*
30 * ASSERTION:
31 *   Invalid type name
32 *
33 * SECTION: Types, Operators, and Expressions/Data Types and Sizes
34 *
35 */
36
37
38#pragma D option quiet
39
40dtrace:::BEGIN
41{
42	i = (char int)0;
43	exit(0);
44}
45