1139823Simp/*
21541Srgrimes * CDDL HEADER START
31541Srgrimes *
41541Srgrimes * The contents of this file are subject to the terms of the
51541Srgrimes * Common Development and Distribution License (the "License").
61541Srgrimes * You may not use this file except in compliance with the License.
71541Srgrimes *
81541Srgrimes * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
91541Srgrimes * or http://www.opensolaris.org/os/licensing.
101541Srgrimes * See the License for the specific language governing permissions
111541Srgrimes * and limitations under the License.
121541Srgrimes *
131541Srgrimes * When distributing Covered Code, include this CDDL HEADER in each
141541Srgrimes * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
151541Srgrimes * If applicable, add the following below this CDDL HEADER, with the
161541Srgrimes * fields enclosed by brackets "[]" replaced with your own identifying
171541Srgrimes * information: Portions Copyright [yyyy] [name of copyright owner]
181541Srgrimes *
191541Srgrimes * CDDL HEADER END
201541Srgrimes */
211541Srgrimes
221541Srgrimes/*
231541Srgrimes * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
241541Srgrimes * Use is subject to license terms.
251541Srgrimes */
261541Srgrimes
271541Srgrimes#pragma ident	"%Z%%M%	%I%	%E% SMI"
281541Srgrimes
291541Srgrimes/*
3050477Speter * ASSERTION:
311541Srgrimes *   Verify that divide by 0 errors are caught
321541Srgrimes *
332168Spaul * SECTION:
344507Sbde *	Types, Operators, and Expressions/Arithmetic Operators
352168Spaul */
36104355Smike
37104355Smike
3897024SiedowseBEGIN
3979103Sbrooks{
4097024Siedowse	c = 123/0;
4179103Sbrooks	exit(0);
42104355Smike}
431541Srgrimes
4434750Speter