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
Make StringComparer.Create throw ArgumentNullException (#26570)
[mono-project.git]
/
mcs
/
tests
/
test-xml-067.cs
blob
95b0a987f71a8f1ae35c6bedd52832459dde36c9
1
// Compiler options: support-xml-067.cs -doc:xml-067.xml -warnaserror
2
3
// Partial types can have documentation on one part only
4
5
using
System
;
6
7
namespace
Testing
8
{
9
/// <summary>
10
/// description for class Test
11
/// </summary>
12
public partial class
Test
13
{
14
/// test
15
public
Test
()
16
{
17
}
18
}
19
20
public partial class
Test
21
{
22
/// test 2
23
public void
Foo
()
24
{
25
}
26
27
static void
Main
()
28
{
29
}
30
}
31
}