Skip to content

Commit

Permalink
update version file 2.073.0
Browse files Browse the repository at this point in the history
- remove tokenstring test depending on __VERSION__
- none of the "macro" special tokens is stable (VENDOR/DATE/TIME...)
  • Loading branch information
MartinNowak committed Oct 7, 2016
1 parent 0735a4c commit d477b57
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
2.072.0
2.073.0
13 changes: 5 additions & 8 deletions test/fail_compilation/lexer2.d
@@ -1,21 +1,18 @@
/*
TEST_OUTPUT:
---
fail_compilation/lexer2.d(15): Error: odd number (3) of hex characters in hex string
fail_compilation/lexer2.d(16): Error: non-hex character 'G' in hex string
fail_compilation/lexer2.d(17): Error: identifier expected for heredoc, not 2072L
fail_compilation/lexer2.d(19): Error: heredoc rest of line should be blank
fail_compilation/lexer2.d(21): Error: unterminated delimited string constant starting at fail_compilation/lexer2.d(21)
fail_compilation/lexer2.d(23): Error: semicolon expected following auto declaration, not 'EOF'
fail_compilation/lexer2.d(14): Error: odd number (3) of hex characters in hex string
fail_compilation/lexer2.d(15): Error: non-hex character 'G' in hex string
fail_compilation/lexer2.d(16): Error: heredoc rest of line should be blank
fail_compilation/lexer2.d(18): Error: unterminated delimited string constant starting at fail_compilation/lexer2.d(18)
fail_compilation/lexer2.d(20): Error: semicolon expected following auto declaration, not 'EOF'
---
*/

// https://dlang.dawg.eu/coverage/src/lexer.c.gcov.html

static s1 = x"123";
static s2 = x"123G";
static s3 = q"__VERSION__
_";
static s4 = q"here notblank
here";
static s5 = q"here
Expand Down

0 comments on commit d477b57

Please sign in to comment.