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-05-18 00:25:15 +0400
committerMiguel de Icaza <miguel@gnome.org>2002-05-18 00:25:15 +0400
commitcfc4b4b32a89c078cd03a343ba576c35b51fd7d7 (patch)
tree041fc2bc54372592f96d4ba569e77be25a7d20f1 /mcs/errors/cs0214-2.cs
parent3cd86625e7059cfea0f4ca7505b33a53131d53e2 (diff)
Add more tests
svn path=/trunk/mcs/; revision=4725
Diffstat (limited to 'mcs/errors/cs0214-2.cs')
-rwxr-xr-xmcs/errors/cs0214-2.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/mcs/errors/cs0214-2.cs b/mcs/errors/cs0214-2.cs
new file mode 100755
index 00000000000..364a9b5a9a1
--- /dev/null
+++ b/mcs/errors/cs0214-2.cs
@@ -0,0 +1,7 @@
+class X {
+ static void Main ()
+ {
+ int b;
+ int a = (int *) b;
+ }
+}