Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs1584-6.cs
1 // CS1584: XML comment on `Test' has syntactically incorrect cref attribute `IList(<>)'
2 // Line: 8
3 // Compiler options: -doc:dummy.xml -warnaserror -warn:1
4
5 using System.Collections.Generic;
6
7 /// <returns>A <see cref="IList({})" />.</returns>
8 public class Test
9 {
10 }