summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0547-2.cs
blob: 7dfa73a694bfd6562956b2d373491fc04f55f4a8 (plain)
1
2
3
4
5
6
7
// CS0547: `PropertyInterface.Value': property or indexer cannot have void type
// Line: 5

interface PropertyInterface {
        void Value { get; }
}