fork download
using System;

public class Test
{
	public class Test
	{
		public string Name {get;set;}
		public string Status {get;set;}
	}
	
	public class TestSuite
	{
		public List<Test> TestList {get;set;}
	}
	
	public class Report
	{
		public List<TestSuite> TestSuits {get;set;}
	}
	
	public class Model
	{
		public List<Report> Reports {get;set;}
	}
	
	
	
	public static void Main()
	{
		// your code goes here
	}
}
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cs(5,15): error CS0542: `Test.Test': member names cannot be the same as their enclosing type
prog.cs(3,14): (Location of the symbol related to previous error)
Compilation failed: 1 error(s), 0 warnings
stdout
Standard output is empty