changeset 290:d8df37d1b51b

colliding symbols via alias declaration Ilya Zaitseff <sark7@mail333.com> 2005-02-14 news:opsl6xrbnaaaezs2@robingood nntp://news.digitalmars.com/digitalmars.D.bugs/2983
author thomask
date Fri, 18 Feb 2005 23:10:43 +0000
parents 92afe4ae392b
children 124a9b790f18
files nocompile/alias_17.d
diffstat 1 files changed, 20 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/alias_17.d	Fri Feb 18 23:10:43 2005 +0000
@@ -0,0 +1,20 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Ilya Zaitseff <sark7@mail333.com>
+// @date@	2005-02-14
+// @uri@	news:opsl6xrbnaaaezs2@robingood
+// @url@	nntp://news.digitalmars.com/digitalmars.D.bugs/2983
+
+module dstress.nocompile.alias_17;
+
+void test(){
+}
+
+int _test;
+alias _test test;
+
+void check(){
+	test = 1;
+} 
\ No newline at end of file