Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs8036.cs
1 // CS8036: Only one part of a partial type can declare primary constructor parameters
2 // Line: 8
3 // Compiler options: -langversion:experimental
4
5 partial class Part(int arg)
6 {
7 }
8
9 partial class Part(int arg)
10 {
11 }