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