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:
authorAlejandro Sánchez Acosta <asanchez@mono-cvs.ximian.com>2002-12-24 17:23:39 +0300
committerAlejandro Sánchez Acosta <asanchez@mono-cvs.ximian.com>2002-12-24 17:23:39 +0300
commitada835f12f4ef9df87cfbfcc775e14102e6a04eb (patch)
tree3a58da950845e515454447c7a60ffedde92e63e5 /mcs/errors/cs0202.cs
parent451e834b2bf721a06dec48a12ac993f723a416e8 (diff)
Added cs0202.cs test error.
svn path=/trunk/mcs/; revision=9860
Diffstat (limited to 'mcs/errors/cs0202.cs')
-rw-r--r--mcs/errors/cs0202.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/mcs/errors/cs0202.cs b/mcs/errors/cs0202.cs
new file mode 100644
index 00000000000..4222e17874b
--- /dev/null
+++ b/mcs/errors/cs0202.cs
@@ -0,0 +1,9 @@
+// cs0202.cs: GetEnumerator cant return a pointer, only an instance.
+// Line: 6
+
+public class Foo
+{
+ int P* GetEnumerator ()
+ {
+ }
+}