go/test/fixedbugs
Russ Cox 60ce95d7a1 code changes for array conversion.
as a reminder, the old conversion
was that you could write

	var arr [10]byte;
	var slice []byte;
	slice = arr;

but now you have to write

	slice = &arr;

the change eliminates an implicit &, so that
the only implicit &s left are in the . operator
and in string(arr).

also, removed utf8.EncodeRuneToString
in favor of string(rune).

R=r
DELTA=83  (1 added, 23 deleted, 59 changed)
OCL=27531
CL=27534
2009-04-15 20:27:45 -07:00
..
2009-01-20 14:40:40 -08:00
2009-01-26 16:57:24 -08:00
2008-06-06 16:56:18 -07:00
2008-06-06 16:56:18 -07:00
2009-01-16 14:58:14 -08:00
2009-01-20 14:40:40 -08:00
2008-06-06 16:56:18 -07:00
2008-06-06 16:56:18 -07:00
2008-07-28 10:22:49 -07:00
2009-01-20 14:40:40 -08:00
2008-08-11 22:07:49 -07:00
2008-06-06 16:56:18 -07:00
2008-06-06 16:56:18 -07:00
2009-01-06 13:44:44 -08:00
2008-06-06 16:56:18 -07:00
2008-07-07 10:03:10 -07:00
2009-01-20 14:40:40 -08:00
2008-06-08 17:19:11 -07:00
2009-01-20 14:40:40 -08:00
2009-01-20 14:40:40 -08:00
2008-06-23 17:13:33 -07:00
2008-06-06 16:56:18 -07:00
2008-07-07 10:03:10 -07:00
2008-06-23 17:13:33 -07:00
2008-07-07 10:03:10 -07:00
2009-01-06 15:19:02 -08:00
2008-07-07 10:03:10 -07:00
2008-06-23 17:13:33 -07:00
2008-07-07 10:03:10 -07:00
2009-01-20 14:40:40 -08:00
2009-04-15 20:27:45 -07:00
2009-01-20 14:40:40 -08:00
2008-07-25 12:20:14 -07:00
2008-07-07 10:17:52 -07:00
2008-07-07 10:03:10 -07:00
2008-07-27 13:50:54 -07:00
2008-08-11 22:07:49 -07:00
2008-10-29 14:09:48 -07:00
2009-01-20 14:40:40 -08:00
2009-01-20 14:40:40 -08:00
2009-04-15 20:27:45 -07:00
2009-01-16 14:58:14 -08:00
2008-09-04 17:36:57 -07:00
2008-09-04 17:36:57 -07:00
2008-07-27 13:50:54 -07:00
2009-02-05 15:22:49 -08:00
2008-07-07 18:07:31 -07:00
2009-01-20 14:40:40 -08:00
2009-01-06 15:19:02 -08:00
2009-01-06 15:19:02 -08:00
2008-09-02 13:08:40 -07:00
2008-09-03 13:21:05 -07:00
2009-03-03 16:09:12 -08:00
2009-01-20 14:40:40 -08:00
2008-09-03 13:21:05 -07:00
2009-01-08 20:06:37 -08:00
2008-09-04 13:35:19 -07:00
2008-08-11 22:07:49 -07:00
2009-01-20 14:40:40 -08:00
2009-03-05 15:57:03 -08:00
2008-09-11 15:48:42 -07:00
2009-03-10 19:16:31 -07:00
2008-09-22 12:45:01 -07:00
2009-03-20 10:34:46 -07:00
2008-09-02 13:08:40 -07:00
2008-09-03 19:58:46 -07:00
2009-01-20 14:40:40 -08:00
2009-01-20 14:40:40 -08:00
2008-09-20 15:16:48 -07:00
2008-12-12 13:29:25 -08:00
2008-10-14 19:41:05 -07:00
2009-03-12 19:57:30 -07:00
2008-11-03 15:52:34 -08:00
2009-01-16 16:12:14 -08:00
2009-01-20 14:40:40 -08:00
2009-01-20 14:40:40 -08:00
2008-10-30 13:26:57 -07:00
2009-01-20 14:40:40 -08:00
2009-03-11 17:37:04 -07:00
2009-02-16 17:44:05 -08:00
2009-03-12 19:57:30 -07:00
2008-12-04 20:51:47 -08:00
2009-01-26 16:57:24 -08:00
2009-01-27 19:30:44 -08:00
2009-03-11 16:25:45 -07:00
2009-03-22 21:02:17 -07:00
2009-04-10 17:58:10 -07:00