Updated with review feedback.
[mono.git] / mcs / errors / cs8041.cs
1 // CS8041: Primary constructor already has a body
2 // Line: 10
3
4 class C (int arg)
5 {
6         {
7                 arg = 1;
8         }
9
10         {
11                 arg = 2;
12         }
13 }