* tests: Add new directory for test cases.
authorAnkit Jain <radical@corewars.org>
Fri, 28 Oct 2005 13:50:44 +0000 (13:50 -0000)
committerAnkit Jain <radical@corewars.org>
Fri, 28 Oct 2005 13:50:44 +0000 (13:50 -0000)
* tests/gen-prop.cs: New test case (for r52316).

svn path=/trunk/mono/; revision=52320

mono/dis/ChangeLog
mono/dis/tests/Changelog [new file with mode: 0644]
mono/dis/tests/gen-prop.cs [new file with mode: 0644]

index a3b26d68012c6061078bd462dd8f5cd420af50e2..9fd5dccacce49dc2c17649a5a23820e40dd48b79 100644 (file)
@@ -1,3 +1,7 @@
+2005-10-28  Ankit Jain  <jankit@novell.com>
+
+       * tests: Add new directory for test cases.
+
 2005-10-28  Ankit Jain  <jankit@novell.com>
 
        * get.c (dis_stringify_method_signature): Use context instead of container
diff --git a/mono/dis/tests/Changelog b/mono/dis/tests/Changelog
new file mode 100644 (file)
index 0000000..42af143
--- /dev/null
@@ -0,0 +1,3 @@
+2005-10-28  Ankit Jain  <jankit@novell.com>
+
+       * gen-prop.cs: New test case (for r52316).
diff --git a/mono/dis/tests/gen-prop.cs b/mono/dis/tests/gen-prop.cs
new file mode 100644 (file)
index 0000000..b6f9b70
--- /dev/null
@@ -0,0 +1,7 @@
+//Property using a generic param
+class g<T>
+{
+       public T abc {
+               get { return default (T); }
+       }
+}