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-08-23 23:45:54 +0400
committerMartin Baulig <martin@novell.com>2002-08-23 23:45:54 +0400
commit6cd8fed06e7b68848b044c61304e95e420bd0ae6 (patch)
tree21e34ec0bff78d9af5235a53da6217ff3d290cac
parente2f01453771ccfeafb5022b99f81f630e50c1ca8 (diff)
Make this actually work.
svn path=/trunk/mcs/; revision=6973
-rw-r--r--mcs/errors/error-3.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/mcs/errors/error-3.cs b/mcs/errors/error-3.cs
index 96ba1f07c33..5dfe8996555 100644
--- a/mcs/errors/error-3.cs
+++ b/mcs/errors/error-3.cs
@@ -17,9 +17,9 @@ struct A
class X
{
+ // CS0177
static void test1 (out A a)
{
- // CS0165
a.a = 5;
}
@@ -48,7 +48,7 @@ class X
{
A a;
- // CS0165
+ // CS0170
Console.WriteLine (a.a);
}