repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[Http]: Cosmetic, remove some dead code.
[mono-project.git]
/
mcs
/
errors
/
cs1591-14.cs
blob
4e9b4f86e021c8fc6a3fc52fb1267bfb830bc5de
1
// CS1591: Missing XML comment for publicly visible type or member `Testing.Test.operator !(Testing.Test)'
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 static bool operator
! (
Test t
)
15
{
16
return false
;
17
}
18
}
19
}