blob: 39e695003a65aef86608895cbba29a19fecb4e0c (
plain)
1
2
3
4
5
6
7
8
9
10
|
// CS8037: `S.S(long)': Instance constructor of type with primary constructor must specify `this' constructor initializer
// Line: 6
// Compiler options: -langversion:experimental
class S (int arg)
{
public S (long l)
{
}
}
|