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:
Diffstat (limited to 'mcs/errors/cs0120-2.cs')
-rwxr-xr-xmcs/errors/cs0120-2.cs26
1 files changed, 0 insertions, 26 deletions
diff --git a/mcs/errors/cs0120-2.cs b/mcs/errors/cs0120-2.cs
deleted file mode 100755
index 68899fc9e80..00000000000
--- a/mcs/errors/cs0120-2.cs
+++ /dev/null
@@ -1,26 +0,0 @@
-using System;
-using System.Threading;
-using System.Reflection;
-using System.Reflection.Emit;
-
-public class Test {
-
- public Test () : this (Add8(4), 6) {
- string hostName = System.Net.Dns.GetHostName ();
- Console.WriteLine ("Hostname: " + hostName);
- }
-
- public Test (int i, int j) {
- Console.WriteLine ("GOT : " + i + " : " + j);
- }
-
-
- public static void Main (String[] args) {
- Test t = new Test ();
- }
-
- private int Add8 (int i) {
- return i + 8;
- }
-
-}