summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0531.cs
blob: fbfeb32e22d5cb30d17c389c27707bf95265d67c (plain)
1
2
3
4
5
6
7
8
9
10
// CS0531: `Interface.Foo()': interface members cannot have a definition
// Line: 5

public interface Interface {
        void Foo () {
        }
}