blob: 69d6cce6f6114ba2ae3b7a6d90aec34e24076d21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// CS0260: Missing partial modifier on declaration of type `Foo'. Another partial declaration of this type exists
// Line: 3
public class Foo
{ }
public partial class Foo
{ }
class X
{
static void Main ()
{ }
}
|