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>2005-11-10 13:27:18 +0300
committerMarek Safar <marek.safar@gmail.com>2005-11-10 13:27:18 +0300
commit0a0ff8e30e9810b4349f0843f9733213d68f5a9e (patch)
treeb343fba203378dabffddc3fe8f49b62d17c9ea84 /mcs/tests/test-470.cs
parent082f24e3a812117b5e0b05688888176d436f3958 (diff)
New test
svn path=/trunk/mcs/; revision=52840
Diffstat (limited to 'mcs/tests/test-470.cs')
-rw-r--r--mcs/tests/test-470.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/mcs/tests/test-470.cs b/mcs/tests/test-470.cs
new file mode 100644
index 00000000000..5c5aba149b1
--- /dev/null
+++ b/mcs/tests/test-470.cs
@@ -0,0 +1,19 @@
+// This code must be compilable without any warning
+// Compiler options: -warnaserror -warn:4
+
+class X
+{
+ public string ASTNodeTypeName
+ {
+ get
+ {
+ return typeof(int).FullName;;
+ }
+ }
+}
+
+class Demo {
+ static void Main ()
+ {
+ }
+}