"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git] / mcs / errors / cs1591-6.cs
blob84bb3741aef6b10fa10f8f4757f0b29a9f7e5f94
1 // CS1591: Missing XML comment for publicly visible type or member `Testing.Test.Constant'
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 const string Constant = "CONSTANT STRING";