1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
12 *
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 *
19 * CDDL HEADER END
20 */
21
22/*
23 * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
24 * Use is subject to license terms.
25 */
26
27#pragma ident	"@(#)err.D_DECL_INCOMPLETE.order2.d	1.1	06/08/28 SMI"
28
29/*
30 * ASSERTION:
31 * When struct definitions are nested inside one another, the inner struct
32 * should be defined before the outer one can declare it as a variable.
33 *
34 * SECTION: Structs and Unions/Structs
35 *
36 */
37
38#pragma D option quiet
39
40struct InnerMore {
41	struct InnerMost IMost;
42	int dummy_More;
43};
44
45struct InnerMost {
46	int position;
47	char content;
48};
49
50struct Inner {
51	struct InnerMore IMore;
52	int dummy_More;
53};
54
55struct Outer {
56	struct Inner I;
57	int dummy_More;
58};
59
60struct OuterMore {
61	struct Outer O;
62	int dummy_More;
63};
64
65struct OuterMost {
66	struct OuterMore OMore;
67	int dummy_More;
68} OMost;
69
70
71BEGIN
72{
73
74	OMost.dummy_More = 0;
75	OMost.OMore.dummy_More = 1;
76	OMost.OMore.O.dummy_More = 2;
77	OMost.OMore.O.I.dummy_More = 3;
78	OMost.OMore.O.I.IMore.dummy_More = 4;
79	OMost.OMore.O.I.IMore.IMost.position = 5;
80	OMost.OMore.O.I.IMore.IMost.content = 'e';
81
82	printf("OMost.dummy_More: %d\nOMost.OMore.dummy_More: %d\n",
83	OMost.dummy_More, OMost.OMore.dummy_More);
84
85	printf("OMost.OMore.O.dummy_More: %d\nOMost.OMore.O.I.dummy_More: %d\n",
86	OMost.OMore.O.dummy_More, OMost.OMore.O.I.dummy_More);
87
88	printf("OMost.OMore.O.I.IMore.dummy_More:%d\n",
89	OMost.OMore.O.I.IMore.dummy_More);
90
91	printf("OMost.OMore.O.I.IMore.IMost.position: %d\n",
92	OMost.OMore.O.I.IMore.IMost.position);
93
94	printf("OMost.OMore.O.I.IMore.IMost.content: %c\n",
95	OMost.OMore.O.I.IMore.IMost.content);
96
97	exit(0);
98}
99
100END
101/(0 != OMost.dummy_More) || (1 != OMost.OMore.dummy_More)
102    (2 != OMost.OMore.O.dummy_More) || (3 != OMost.OMore.O.I.dummy_More)
103    (4 != OMost.OMore.O.I.IMore.dummy_More)
104    (5 != OMost.OMore.O.I.IMore.IMost.position)
105    ('e' != OMost.OMore.O.I.IMore.IMost.content)/
106{
107	exit(1);
108}
109