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:
authorMarek Safar <marek.safar@gmail.com>2009-06-17 22:58:34 +0400
committerMarek Safar <marek.safar@gmail.com>2009-06-17 22:58:34 +0400
commit08066c573d7569c2f788b98645c2e87b0ee7307f (patch)
treea50e02d27cda7063d88db4e89b41f80be2ef05c1 /mcs/tests/test-251.cs
parent0c2bb8157f43826a57c39b863a1d67e3aef1b7b2 (diff)
Add more tests.
svn path=/trunk/mcs/; revision=136345
Diffstat (limited to 'mcs/tests/test-251.cs')
-rw-r--r--mcs/tests/test-251.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/mcs/tests/test-251.cs b/mcs/tests/test-251.cs
index 588cca9f2ac..156de30c80f 100644
--- a/mcs/tests/test-251.cs
+++ b/mcs/tests/test-251.cs
@@ -1,6 +1,9 @@
//
// Tests the valid value types for volatile fields.
//
+
+using System;
+
interface R {
}
@@ -21,6 +24,8 @@ class X {
volatile X x;
volatile R r;
volatile XX dd;
+ volatile IntPtr ip;
+ volatile UIntPtr uip;
static void Main () {}
}