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
2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs1591-16.cs
blob
6b8cdd225020932fb03f0719594b56e4f0370088
1
// cs1591-16.cs: Missing XML comment for publicly visible type or member `Testing.Test.~Test()'
2
// Line: 16
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
~
Test
()
15
{
16
}
17
}
18
}