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>2002-07-29 15:02:38 +0400
committerMartin Baulig <martin@novell.com>2002-07-29 15:02:38 +0400
commit4e47010b48c660e056478803ceca75fe8af11e9d (patch)
treea2681f0a794f0c568ecd258b230cc46653bb5c89 /mcs/tests/test-143.cs
parent0254c244a887e7d0e9d90f1e90583d9d8ce5d755 (diff)
2002-07-29 Martin Baulig <martin@gnome.org>
* makefile: Put back test-152.cs. * test-143.cs: Fixed a compilation error in this test. svn path=/trunk/mcs/; revision=6238
Diffstat (limited to 'mcs/tests/test-143.cs')
-rwxr-xr-xmcs/tests/test-143.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/mcs/tests/test-143.cs b/mcs/tests/test-143.cs
index 942caedc087..3fb5ec2db83 100755
--- a/mcs/tests/test-143.cs
+++ b/mcs/tests/test-143.cs
@@ -6,6 +6,7 @@ struct MonoEnumInfo {
void stuff() { val = 1; }
static int GetInfo (out MonoEnumInfo info) {
+ info = new MonoEnumInfo ();
info.stuff();
return info.val;
}