Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@gnome.org>2002-02-25 23:17:00 +0300
committerMiguel de Icaza <miguel@gnome.org>2002-02-25 23:17:00 +0300
commit9a185b7525a3af5b39d5a6f4fbf4f3dbf43b6f4f (patch)
tree1040214d8ef024940845ad0819f24563b3a5ff45 /mcs/tests/test-74.cs
parent6a587b32c2644380835f030068c09bb303e26e4a (diff)
Improve tokenizer test
svn path=/trunk/mcs/; revision=2645
Diffstat (limited to 'mcs/tests/test-74.cs')
-rwxr-xr-xmcs/tests/test-74.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/mcs/tests/test-74.cs b/mcs/tests/test-74.cs
index 939e909939f..ede9e38b577 100755
--- a/mcs/tests/test-74.cs
+++ b/mcs/tests/test-74.cs
@@ -10,9 +10,13 @@ class X {
#endif
string s = @"Hola\";
string d = "Hola\\";
+ string e = @"Co""a";
+ string f = "Co\"a";
if (s != d)
return 1;
+ if (e != f)
+ return 2;
return 0;
}
}