annotate nocompile/h/escape_hex_string_05_A.d @ 1317:4df71a8c82f2

[Issue 754] hex strings crash DMD when reporting syntax errors Lu?s Marques <luismarques@gmail.com> 2006-12-27 http://d.puremagic.com/issues/show_bug.cgi?id=754
author thomask
date Sun, 31 Dec 2006 14:29:11 +0000
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1317
4df71a8c82f2 [Issue 754] hex strings crash DMD when reporting syntax errors
thomask
parents:
diff changeset
1 // $HeadURL$
4df71a8c82f2 [Issue 754] hex strings crash DMD when reporting syntax errors
thomask
parents:
diff changeset
2 // $Date$
4df71a8c82f2 [Issue 754] hex strings crash DMD when reporting syntax errors
thomask
parents:
diff changeset
3 // $Author$
4df71a8c82f2 [Issue 754] hex strings crash DMD when reporting syntax errors
thomask
parents:
diff changeset
4
4df71a8c82f2 [Issue 754] hex strings crash DMD when reporting syntax errors
thomask
parents:
diff changeset
5 // @author@ Luís Marques <luismarques@gmail.com>
4df71a8c82f2 [Issue 754] hex strings crash DMD when reporting syntax errors
thomask
parents:
diff changeset
6 // @date@ 2006-12-27
4df71a8c82f2 [Issue 754] hex strings crash DMD when reporting syntax errors
thomask
parents:
diff changeset
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=754
4df71a8c82f2 [Issue 754] hex strings crash DMD when reporting syntax errors
thomask
parents:
diff changeset
8 // @desc@ [Issue 754] hex strings crash DMD when reporting syntax errors
4df71a8c82f2 [Issue 754] hex strings crash DMD when reporting syntax errors
thomask
parents:
diff changeset
9
4df71a8c82f2 [Issue 754] hex strings crash DMD when reporting syntax errors
thomask
parents:
diff changeset
10 // __DSTRESS_ELINE__ 15
4df71a8c82f2 [Issue 754] hex strings crash DMD when reporting syntax errors
thomask
parents:
diff changeset
11
4df71a8c82f2 [Issue 754] hex strings crash DMD when reporting syntax errors
thomask
parents:
diff changeset
12 module dstress.nocompile.h.escape_hex_string_05_A;
4df71a8c82f2 [Issue 754] hex strings crash DMD when reporting syntax errors
thomask
parents:
diff changeset
13
4df71a8c82f2 [Issue 754] hex strings crash DMD when reporting syntax errors
thomask
parents:
diff changeset
14 void main(){
4df71a8c82f2 [Issue 754] hex strings crash DMD when reporting syntax errors
thomask
parents:
diff changeset
15 x"EF BB BF";
4df71a8c82f2 [Issue 754] hex strings crash DMD when reporting syntax errors
thomask
parents:
diff changeset
16 x"00 BB BF";
4df71a8c82f2 [Issue 754] hex strings crash DMD when reporting syntax errors
thomask
parents:
diff changeset
17 }