178064Sume/*
278064Sume * CDDL HEADER START
355505Sshin *
455505Sshin * The contents of this file are subject to the terms of the
576175Sschweikh * Common Development and Distribution License (the "License").
655505Sshin * You may not use this file except in compliance with the License.
755505Sshin *
855505Sshin * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
955505Sshin * or http://www.opensolaris.org/os/licensing.
1055505Sshin * See the License for the specific language governing permissions
1155505Sshin * and limitations under the License.
1255505Sshin *
1355505Sshin * When distributing Covered Code, include this CDDL HEADER in each
1455505Sshin * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
1555505Sshin * If applicable, add the following below this CDDL HEADER, with the
1655505Sshin * fields enclosed by brackets "[]" replaced with your own identifying
1776175Sschweikh * information: Portions Copyright [yyyy] [name of copyright owner]
1855505Sshin *
1955505Sshin * CDDL HEADER END
2055505Sshin */
2155505Sshin
2255505Sshin/*
2355505Sshin * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
2455505Sshin * Use is subject to license terms.
2555505Sshin */
2655505Sshin
2755505Sshin#pragma	ident	"%Z%%M%	%I%	%E% SMI"
2855505Sshin
2955505Sshin/*
30141580Sru * ASSERTION:
3155505Sshin * 	Shift operators not supported on all types
32231852Sbz *
3355505Sshin * SECTION: Types, Operators, and Expressions/Bitwise Operators
3456194Sasmodai *
3555505Sshin */
3655505Sshin
3778064Sume#pragma D option quiet
3855505Sshin
3983934SbrooksBEGIN
4055505Sshin{
4155505Sshin	x = "char" << 2;
4255505Sshin	exit(1);
4378064Sume}
4478064Sume