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>2001-10-12 05:24:02 +0400
committerMiguel de Icaza <miguel@gnome.org>2001-10-12 05:24:02 +0400
commiteeffa700cfcda5b8977beb45da24b24b4cabc011 (patch)
tree51365c88ab6320034157b4c2207eb8fe78e85511 /mcs/errors/cs0171.cs
parentd6c8f01231476177ae7c63cd16a138c4fc3a62f6 (diff)
Add more tests
svn path=/trunk/mcs/; revision=1153
Diffstat (limited to 'mcs/errors/cs0171.cs')
-rwxr-xr-xmcs/errors/cs0171.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/mcs/errors/cs0171.cs b/mcs/errors/cs0171.cs
new file mode 100755
index 00000000000..2d4f07d4379
--- /dev/null
+++ b/mcs/errors/cs0171.cs
@@ -0,0 +1,9 @@
+// cs0171.cs: field x must be initialized before constructor X ends.
+// Line:
+class X {
+ public readonly int x;
+
+ X ()
+ {
+ }
+}