diff run/t/typeof_17_B.d @ 1544:ab3b56fdd9ab

[Issue 1148] Weird error "... of type TOK146" on recursive type definition Bruno Medeiros <brunodomedeiros+bugz@gmail.com> 2007-05-26 http://d.puremagic.com/issues/show_bug.cgi?id=1148
author thomask
date Sun, 01 Jul 2007 13:22:46 +0000
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/t/typeof_17_B.d	Sun Jul 01 13:22:46 2007 +0000
@@ -0,0 +1,34 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Bruno Medeiros <brunodomedeiros+bugz@gmail.com>
+// @date@	2007-05-26
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=1148
+// @desc@	[Issue 1148] Weird error "... of type TOK146" on recursive type definition
+
+module dstress.run.t.typeof_17_B;
+
+int count;
+
+void foo(functype param) {
+	count++;
+	if(param){
+		param(null);
+	}
+}
+
+alias typeof(&foo) functype;
+
+int main(){
+	foo(null);
+	if(count != 1){
+		assert(0);
+	}
+	foo(&foo);
+	if(count != 3){
+		assert(0);
+	}
+
+	return 0;
+}