[Swift-commit] r4952 - branches/release-0.93/tests/bugs
hategan at ci.uchicago.edu
hategan at ci.uchicago.edu
Fri Aug 5 18:32:25 CDT 2011
Author: hategan
Date: 2011-08-05 18:32:25 -0500 (Fri, 05 Aug 2011)
New Revision: 4952
Modified:
branches/release-0.93/tests/bugs/481-array-hang.swift
Log:
use old style array declaration
Modified: branches/release-0.93/tests/bugs/481-array-hang.swift
===================================================================
--- branches/release-0.93/tests/bugs/481-array-hang.swift 2011-08-05 23:32:05 UTC (rev 4951)
+++ branches/release-0.93/tests/bugs/481-array-hang.swift 2011-08-05 23:32:25 UTC (rev 4952)
@@ -1,4 +1,4 @@
-int[] a = [1, 2, 3];
+int a[] = [1, 2, 3];
// hangs waiting for a[4]
trace(a[4]);
\ No newline at end of file
More information about the Swift-commit
mailing list