New test.
authorMarek Safar <marek.safar@gmail.com>
Tue, 24 Jun 2008 12:26:55 +0000 (12:26 -0000)
committerMarek Safar <marek.safar@gmail.com>
Tue, 24 Jun 2008 12:26:55 +0000 (12:26 -0000)
svn path=/trunk/mcs/; revision=106495

mcs/errors/cs0501-2.cs [new file with mode: 0755]

diff --git a/mcs/errors/cs0501-2.cs b/mcs/errors/cs0501-2.cs
new file mode 100755 (executable)
index 0000000..aa46d0a
--- /dev/null
@@ -0,0 +1,7 @@
+// CS0501: `Test.this[string].get' must have a body because it is not marked abstract, extern, or partial\r
+// Line: 6\r
+\r
+public abstract class Test\r
+{\r
+       public string this [string key] { get; set; }\r
+}\r