1178476Sjb/*
2178476Sjb * CDDL HEADER START
3178476Sjb *
4178476Sjb * The contents of this file are subject to the terms of the
5178476Sjb * Common Development and Distribution License (the "License").
6178476Sjb * You may not use this file except in compliance with the License.
7178476Sjb *
8178476Sjb * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9178476Sjb * or http://www.opensolaris.org/os/licensing.
10178476Sjb * See the License for the specific language governing permissions
11178476Sjb * and limitations under the License.
12178476Sjb *
13178476Sjb * When distributing Covered Code, include this CDDL HEADER in each
14178476Sjb * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15178476Sjb * If applicable, add the following below this CDDL HEADER, with the
16178476Sjb * fields enclosed by brackets "[]" replaced with your own identifying
17178476Sjb * information: Portions Copyright [yyyy] [name of copyright owner]
18178476Sjb *
19178476Sjb * CDDL HEADER END
20178476Sjb */
21178476Sjb
22178476Sjb/*
23178476Sjb * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
24178476Sjb * Use is subject to license terms.
25178476Sjb */
26178476Sjb
27178476Sjb#pragma ident	"%Z%%M%	%I%	%E% SMI"
28178476Sjb
29178476Sjb/*
30178476Sjb * ASSERTION: In D, the an array variable can be assigned to a pointer.
31178476Sjb *
32178476Sjb * SECTION: Pointers and Arrays/Pointer and Array Relationship
33178476Sjb *
34178476Sjb * NOTES:
35178476Sjb *
36178476Sjb */
37178476Sjb
38178476Sjb#pragma D option quiet
39178476Sjb
40178476Sjbint array[5];
41178476Sjbint *p;
42178476Sjb
43178476SjbBEGIN
44178476Sjb{
45178476Sjb	array[0] = 100;
46178476Sjb	array[1] = 200;
47178476Sjb	array[2] = 300;
48178476Sjb	array[3] = 400;
49178476Sjb	array[4] = 500;
50178476Sjb
51178476Sjb	p = array;
52178476Sjb
53178476Sjb	printf("array[0]: %d\tp[0]: %d\n", array[0], p[0]);
54178476Sjb	printf("array[1]: %d\tp[1]: %d\n", array[1], p[1]);
55178476Sjb	printf("array[2]: %d\tp[2]: %d\n", array[2], p[2]);
56178476Sjb	printf("array[3]: %d\tp[3]: %d\n", array[3], p[3]);
57178476Sjb	printf("array[4]: %d\tp[4]: %d\n", array[4], p[4]);
58178476Sjb
59178476Sjb	exit(0);
60178476Sjb
61178476Sjb}
62178476Sjb
63178476SjbEND
64178476Sjb/(array[0] != p[0]) || (array[1] != p[1]) || (array[2] != p[2]) ||
65178476Sjb    (array[3] != p[3]) || (array[4] != p[4])/
66178476Sjb{
67178476Sjb	printf("Error");
68178476Sjb	exit(1);
69178476Sjb}
70178476Sjb
71178476Sjb
72178476Sjb
73