[mcs] Add expression bodied syntax for accessors. Fixes #54991
[mono.git] / mcs / errors / cs1584-2.cs
1 // CS1584: XML comment on `Test' has syntactically incorrect cref attribute `'
2 // Line: 8
3 // Compiler options: -doc:dummy.xml -warnaserror -warn:1
4
5 using System;
6
7 /// <see cref="" />
8 public class Test
9 {
10 }