view run/double_quoted_string_17.d @ 29:aa1f2cebfba6

extended double quoted string tests
author thomask
date Sat, 09 Oct 2004 15:08:26 +0000
parents
children f87ba6507260
line wrap: on
line source

int main(){
	char[] a= "a" "b" "c";
	char[] b= \x61 "bc";
	assert(a==b);
	return 0;
}