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-04-04 00:58:19 +0400
committerMiguel de Icaza <miguel@gnome.org>2002-04-04 00:58:19 +0400
commit0a638094004310b0f1e98c2f8cbb0e2ceffd813f (patch)
treeeeead1069d194c7d99d77d307ad745c4f03c9552 /mcs/tests/test-95.cs
parentc996d9399950a5f09ef2fec12db4f739aac68cd9 (diff)
Add new tests
svn path=/trunk/mcs/; revision=3594
Diffstat (limited to 'mcs/tests/test-95.cs')
-rwxr-xr-xmcs/tests/test-95.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/mcs/tests/test-95.cs b/mcs/tests/test-95.cs
new file mode 100755
index 00000000000..69f3684a43b
--- /dev/null
+++ b/mcs/tests/test-95.cs
@@ -0,0 +1,18 @@
+class X {
+
+ double d = 0;
+
+ void X ()
+ {
+ }
+
+ static int Main ()
+ {
+ X x = new X ();
+
+ if (x.d != 0)
+ return 1;
+
+ return 0;
+ }
+}