diff run/d/delete_12_A.d @ 1615:8d5c55d163fd

Fix some outdated tests that used auto to mean scope.
author Christian Kamm <kamm incasoftware de>
date Sun, 12 Jul 2009 16:44:52 +0200
parents b8c0195059d9
children
line wrap: on
line diff
--- a/run/d/delete_12_A.d	Mon May 25 20:07:04 2009 +0200
+++ b/run/d/delete_12_A.d	Sun Jul 12 16:44:52 2009 +0200
@@ -31,7 +31,7 @@
 }
 
 void test(){
-	auto Foo f = new Foo();
+	scope Foo f = new Foo();
 }
 
 int main(){