1249259Sdim/*
2249259Sdim * CDDL HEADER START
3249259Sdim *
4249259Sdim * The contents of this file are subject to the terms of the
5249259Sdim * Common Development and Distribution License (the "License").
6249259Sdim * You may not use this file except in compliance with the License.
7249259Sdim *
8249259Sdim * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9249259Sdim * or http://www.opensolaris.org/os/licensing.
10249259Sdim * See the License for the specific language governing permissions
11249259Sdim * and limitations under the License.
12249259Sdim *
13249259Sdim * When distributing Covered Code, include this CDDL HEADER in each
14249259Sdim * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15249259Sdim * If applicable, add the following below this CDDL HEADER, with the
16249259Sdim * fields enclosed by brackets "[]" replaced with your own identifying
17249259Sdim * information: Portions Copyright [yyyy] [name of copyright owner]
18249259Sdim *
19249259Sdim * CDDL HEADER END
20249259Sdim */
21249259Sdim
22249259Sdim/*
23249259Sdim * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
24249259Sdim * Use is subject to license terms.
25249259Sdim */
26249259Sdim
27249259Sdim
28249259Sdim#pragma	ident	"%Z%%M%	%I%	%E% SMI"
29249259Sdim
30249259Sdim/*
31249259Sdim * ASSERTION:
32249259Sdim *	Non-integer types used for bitfields will result in a D_DECL_BFTYPE
33249259Sdim *	error.
34249259Sdim *
35249259Sdim * SECTION: Structs and Unions/Bit-Fields
36249259Sdim */
37249259Sdim
38249259Sdim#pragma D option quiet
39249259Sdim
40249259Sdimstruct bits {
41249259Sdim	float : 1;
42249259Sdim} xyz;
43249259Sdim
44249259SdimBEGIN
45249259Sdim{
46249259Sdim	exit(1);
47249259Sdim}
48249259Sdim