repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-04-01 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs1591-6.cs
blob
d38d50aa5f6ab802e2526e0bafb6b0c73404aeaa
1
// cs1591-6.cs: Missing XML comment for publicly visible type or member `Testing.Test.Constant'
2
// Line: 14
3
// Compiler options: -doc:dummy.xml -warnaserror -warn:4
4
5
using
System
;
6
7
namespace
Testing
8
{
9
/// <summary>
10
/// description for class Test
11
/// </summary>
12
public class
Test
13
{
14
public const string
Constant
=
"CONSTANT STRING"
;
15
}
16
}