tst.SizeofString1.d revision 178476
150477Speter/*
228762Sbde * CDDL HEADER START
355626Sbde *
455062Smarcel * The contents of this file are subject to the terms of the
5102964Sbde * Common Development and Distribution License (the "License").
628762Sbde * You may not use this file except in compliance with the License.
714331Speter *
814331Speter * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
983221Smarcel * or http://www.opensolaris.org/os/licensing.
1083221Smarcel * See the License for the specific language governing permissions
1183221Smarcel * and limitations under the License.
1283221Smarcel *
1383221Smarcel * When distributing Covered Code, include this CDDL HEADER in each
1483221Smarcel * 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	"%Z%%M%	%I%	%E% SMI"
28
29/*
30 * ASSERTION: sizeof returns the size in bytes of any D expression or data
31 * type. For sizeof strings the D compiler throws D_SIZEOF_TYPE.
32 *
33 * SECTION: Structs and Unions/Member Sizes and Offsets
34 *
35 */
36#pragma D option quiet
37#pragma D option strsize=256
38
39BEGIN
40{
41	assoc_array["hello"] = "hello";
42	assoc_array["hi"] = "hi";
43	assoc_array["hello"] = "hello, world";
44
45	printf("sizeof (assoc_array[\"hello\"]): %d\n",
46	sizeof (assoc_array["hello"]));
47	printf("sizeof (assoc_array[\"hi\"]): %d\n",
48	sizeof (assoc_array["hi"]));
49
50	exit(0);
51}
52