changeset 20:4d41d450901e

added digitalmars.com digitalmars.D.bugs:2042
author thomask
date Fri, 08 Oct 2004 21:14:44 +0000
parents 127bfbbffe08
children 9fd186cd378a
files run/with_11.d
diffstat 1 files changed, 14 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/with_11.d	Fri Oct 08 21:14:44 2004 +0000
@@ -0,0 +1,14 @@
+// @author@	Nick <Nick_member@pathlink.com>
+// @date@	2004-10-07
+
+auto class AutoClass{
+}
+
+int main(){
+	auto AutoClass ac = new AutoClass();
+
+	with(ac){
+	}
+
+	return 0;
+}