changeset 616:591e7bdedbdc

Sean Kelly <sean@f4.ca> 2005-08-05 news:dd0p34$a82$1@digitaldaemon.com
author thomask
date Sat, 06 Aug 2005 14:34:54 +0000
parents 015847a6fe3d
children d0524165477e
files nocompile/s/synchronized_02_A.d nocompile/s/synchronized_02_B.d nocompile/s/synchronized_02_C.d
diffstat 3 files changed, 62 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/s/synchronized_02_A.d	Sat Aug 06 14:34:54 2005 +0000
@@ -0,0 +1,20 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Sean Kelly <sean@f4.ca>
+// @date@	2005-08-05
+// @uri@	news:dd0p34$a82$1@digitaldaemon.com
+
+// __DSTRESS_ELINE__  15
+
+module dtsress.nocompile.s.synchronized_02_A;
+
+void main(){
+	synchronized(
+			foo
+		)
+	{
+		// blah
+	}
+}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/s/synchronized_02_B.d	Sat Aug 06 14:34:54 2005 +0000
@@ -0,0 +1,22 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Sean Kelly <sean@f4.ca>
+// @date@	2005-08-05
+// @uri@	news:dd0p34$a82$1@digitaldaemon.com
+
+// __DSTRESS_ELINE__  15
+
+module dtsress.nocompile.s.synchronized_02_B;
+
+void main(){
+	synchronized(
+			foo
+		)
+	{
+		// blah
+	}
+	
+	Object foo;
+}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/s/synchronized_02_C.d	Sat Aug 06 14:34:54 2005 +0000
@@ -0,0 +1,20 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Sean Kelly <sean@f4.ca>
+// @date@	2005-08-05
+// @uri@	news:dd0p34$a82$1@digitaldaemon.com
+
+// __DSTRESS_ELINE__  15
+
+module dtsress.nocompile.s.synchronized_02_C;
+
+void main(){
+	synchronized(
+			foo
+		)
+	{
+		Object foo;
+	}
+}
\ No newline at end of file