summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0548.cs
blob: acd88588e41f118ea859f6a1d1b0d07d24ee7076 (plain)
1
2
3
4
5
6
7
// CS0548: `PropertyClass.Value': property or indexer must have at least one accessor
// Line: 5

class PropertyClass {
        public int Value {
        }
}