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-03-18 19:28:28 +0300
committerMiguel de Icaza <miguel@gnome.org>2003-03-18 19:28:28 +0300
commit053423d538943ec742d89e432ece8827d85c80e5 (patch)
tree33f2af7cdd450d41b5447dd845368d4e870d2f34 /mcs/errors/cs0208.cs
parentaa68e6bb3c2354e91be21aadbb181cad036dde24 (diff)
Test bug fix
svn path=/trunk/mcs/; revision=12658
Diffstat (limited to 'mcs/errors/cs0208.cs')
-rw-r--r--mcs/errors/cs0208.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/errors/cs0208.cs b/mcs/errors/cs0208.cs
index b78f1b0e201..25a3529b99a 100644
--- a/mcs/errors/cs0208.cs
+++ b/mcs/errors/cs0208.cs
@@ -16,7 +16,7 @@ namespace cs208
unsafe static void Main ()
{
Foo f = new Foo ();
- Foo *s = &f;
+ void *s = &f;
}
}
}