4865N/A/*
4865N/A * CDDL HEADER START
4865N/A *
4865N/A * The contents of this file are subject to the terms of the
4865N/A * Common Development and Distribution License (the "License").
4865N/A * You may not use this file except in compliance with the License.
4865N/A *
4865N/A * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
4865N/A * or http://www.opensolaris.org/os/licensing.
4865N/A * See the License for the specific language governing permissions
4865N/A * and limitations under the License.
4865N/A *
4865N/A * When distributing Covered Code, include this CDDL HEADER in each
4865N/A * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
4865N/A * If applicable, add the following below this CDDL HEADER, with the
4865N/A * fields enclosed by brackets "[]" replaced with your own identifying
4865N/A * information: Portions Copyright [yyyy] [name of copyright owner]
4865N/A *
4865N/A * CDDL HEADER END
4865N/A */
4865N/A
4865N/A/*
4865N/A * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
4865N/A * Use is subject to license terms.
4865N/A */
5073N/A
6184N/A#pragma ident "%Z%%M% %I% %E% SMI"
4865N/A
4865N/A/*
4865N/A * ASSERTION:
4865N/A * Shift operators not supported on all types
4865N/A *
4865N/A * SECTION: Types, Operators, and Expressions/Bitwise Operators
4865N/A *
4865N/A */
4865N/A
4865N/A#pragma D option quiet
4865N/A
4865N/ABEGIN
4865N/A{
4865N/A x = "char" << 2;
4865N/A exit(1);
4865N/A}
4865N/A