view run/double_quoted_string_18.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= r"a" x"62" \x63;
	char[] b= \u0061 "b" \U00000063;
	assert(a==b);
	return 0;
}