changeset 158:c986d69e4c5c

fixed typos
author thomask
date Wed, 01 Dec 2004 07:26:50 +0000
parents 7ab833470839
children 2bc85b1dc4a3
files nocompile/version_11.d nocompile/wchar_04.d
diffstat 2 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/nocompile/version_11.d	Wed Dec 01 07:25:38 2004 +0000
+++ b/nocompile/version_11.d	Wed Dec 01 07:26:50 2004 +0000
@@ -1,10 +1,11 @@
 // check that the compiler feature D_InlineAsm can't be set for a non-supporting compiler
 
-module dstress.run.version_11;
+module dstress.nocompile.version_11;
 
 int status;
 
 version(D_InlineAsm){
+	static assert(0);
 }else{
 	version = D_InlineAsm;
 	version(D_InlineAsm){
--- a/nocompile/wchar_04.d	Wed Dec 01 07:25:38 2004 +0000
+++ b/nocompile/wchar_04.d	Wed Dec 01 07:26:50 2004 +0000
@@ -10,6 +10,6 @@
 module dstress.nocompile.wchar_04;
 
 int main(){
-	wchar c = 0x1000; // wchar.max+1
+	wchar c = 0x10000; // wchar.max+1
 	return 0;
 }