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>2003-02-23 22:08:21 +0300
committerMiguel de Icaza <miguel@gnome.org>2003-02-23 22:08:21 +0300
commit96aceda23540507604ce0aac2929a533c021977c (patch)
tree6ab6afd4828e0a7a7991dd53bac318bb4547373e /mcs/tests/test-184.cs
parent10ae2b144fdcf3cb0bcaa5fe237cea35dec5a79c (diff)
Add documentation missing of tests, and add new test.
svn path=/trunk/mcs/; revision=11878
Diffstat (limited to 'mcs/tests/test-184.cs')
-rw-r--r--mcs/tests/test-184.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/mcs/tests/test-184.cs b/mcs/tests/test-184.cs
index 8bb51b29545..d925d951ca1 100644
--- a/mcs/tests/test-184.cs
+++ b/mcs/tests/test-184.cs
@@ -22,6 +22,12 @@ public class Test
{
User t;
Test() { t=new User (new Struct(5)); }
+
+ //
+ // This one was not handled before by the compiler
+ // constrast that to the use on the constructor above, that
+ // worked just fine
+ //
User t2=new User(new Struct(251));
static int Main ()