comparison test/bug37.d @ 69:2b5a2eaa88be trunk

[svn r73] Identity expression for dynamic array and null was broken.
author lindquist
date Sun, 28 Oct 2007 04:23:38 +0100
parents
children
comparison
equal deleted inserted replaced
68:c4b3f5d2cd9b 69:2b5a2eaa88be
1 module bug37;
2
3 void main()
4 {
5 char[] a = "hello";
6 assert(a !is null);
7 }