(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs0120-2.cs
blob68899fc9e80169be6dcf9349af7c22b31c18bea6
1 using System;
2 using System.Threading;
3 using System.Reflection;
4 using System.Reflection.Emit;
6 public class Test {
8 public Test () : this (Add8(4), 6) {
9 string hostName = System.Net.Dns.GetHostName ();
10 Console.WriteLine ("Hostname: " + hostName);
13 public Test (int i, int j) {
14 Console.WriteLine ("GOT : " + i + " : " + j);
18 public static void Main (String[] args) {
19 Test t = new Test ();
22 private int Add8 (int i) {
23 return i + 8;