w32file-unix.c: In function 'mono_w32file_get_file_size':
[mono-project.git] / mcs / errors / cs1591-8.cs
blob0ff06d8ea9df575c9d89fc9f86479f92faa61182
1 // CS1591: Missing XML comment for publicly visible type or member `Testing.Test.PublicProperty'
2 // Line: 14
3 // Compiler options: -doc:dummy.xml -warnaserror -warn:4
5 using System;
7 namespace Testing
9 /// <summary>
10 /// description for class Test
11 /// </summary>
12 public class Test
14 public string PublicProperty {
15 get { return null; }