changeset 1441:8888892dd50e

r7389@birke: tk | 2007-03-29 16:01:38 +0200 [Issue 966] is(H==function) fails if H is a function type Elmar Zander <elmar@zandere.de> 2007-02-15 http://d.puremagic.com/issues/show_bug.cgi?id=966
author thomask
date Sat, 31 Mar 2007 08:26:05 +0000
parents 5224177dd804
children bfebb405f3ed
files compile/i/is_17_A.d compile/i/is_17_B.d
diffstat 2 files changed, 38 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/compile/i/is_17_A.d	Sat Mar 31 08:26:05 2007 +0000
@@ -0,0 +1,23 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Elmar Zander <elmar@zandere.de>
+// @date@	2007-02-15
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=966
+// @desc@	[Issue 966] is(H==function) fails if H is a function type
+
+module dstress.compile.i.is_17_A;
+
+void foo(){
+}
+
+template isFunc(H){
+	void isFunc(H h){
+		static assert(is(H == function));
+	}
+}
+
+void bar(){
+	isFunc(&foo);
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/compile/i/is_17_B.d	Sat Mar 31 08:26:05 2007 +0000
@@ -0,0 +1,15 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Elmar Zander <elmar@zandere.de>
+// @date@	2007-02-15
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=966
+// @desc@	[Issue 966] is(H==function) fails if H is a function type
+
+module dstress.compile.i.is_17_B;
+
+void foo(){
+}
+
+static assert(is(typeof(&foo) == function));