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:
authorMartin Baulig <martin@novell.com>2005-06-28 19:10:46 +0400
committerMartin Baulig <martin@novell.com>2005-06-28 19:10:46 +0400
commit1cb6cce061c3094174930ffcb911c078d21831da (patch)
tree57de787e6e5a3f06b4f63b26d73c3ea0e018be96 /mcs/tests/gtest-178.cs
parent30e4386ffef6298f6a15c19ae7c32195fa34b125 (diff)
New test.
svn path=/trunk/mcs/; revision=46652
Diffstat (limited to 'mcs/tests/gtest-178.cs')
-rw-r--r--mcs/tests/gtest-178.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/mcs/tests/gtest-178.cs b/mcs/tests/gtest-178.cs
new file mode 100644
index 00000000000..c75d9feff80
--- /dev/null
+++ b/mcs/tests/gtest-178.cs
@@ -0,0 +1,11 @@
+public interface Foo
+{
+ T Test<T> ()
+ where T : class;
+}
+
+class X
+{
+ static void Main ()
+ { }
+}