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-09-25 13:50:17 +0400
committerMarek Safar <marek.safar@gmail.com>2009-09-25 13:50:17 +0400
commiteb1108d216d99e33da739e88f972dffa86ae5254 (patch)
treea66b20f4183e603da5341183b83aa6b782c7d221 /mcs/tests/gtest-463.cs
parent22fcc4b7b0ae91ecfc42ca1cef9436b55d590c60 (diff)
New tests.
svn path=/trunk/mcs/; revision=142626
Diffstat (limited to 'mcs/tests/gtest-463.cs')
-rw-r--r--mcs/tests/gtest-463.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/mcs/tests/gtest-463.cs b/mcs/tests/gtest-463.cs
new file mode 100644
index 00000000000..2ad02ea6c96
--- /dev/null
+++ b/mcs/tests/gtest-463.cs
@@ -0,0 +1,15 @@
+public partial struct STuple<Ta> { }
+public partial struct STuple<Ta>
+{
+ private readonly Ta a;
+ public STuple (Ta a) { this.a = a; }
+}
+
+class C
+{
+ public static int Main ()
+ {
+ new STuple<int> ();
+ return 0;
+ }
+} \ No newline at end of file