[Swift-commit] r2337 - trunk/tests/language-behaviour
noreply at svn.ci.uchicago.edu
noreply at svn.ci.uchicago.edu
Sat Nov 15 16:28:13 CST 2008
Author: benc
Date: 2008-11-15 16:28:12 -0600 (Sat, 15 Nov 2008)
New Revision: 2337
Added:
trunk/tests/language-behaviour/088-sequential-assign.swift
Log:
test for sequential assignment through several variables
Added: trunk/tests/language-behaviour/088-sequential-assign.swift
===================================================================
--- trunk/tests/language-behaviour/088-sequential-assign.swift (rev 0)
+++ trunk/tests/language-behaviour/088-sequential-assign.swift 2008-11-15 22:28:12 UTC (rev 2337)
@@ -0,0 +1,8 @@
+int a;
+int b;
+int c;
+trace(c);
+c=b;
+b=a;
+a=8645;
+
More information about the Swift-commit
mailing list