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
[corlib] Fix a few NSLogWriter issues. (#13799)
[mono-project.git]
/
mcs
/
tests
/
test-xml-006.cs
blob
217a982111a8997bf262a3dff503dacf3ada7a52
1
// Compiler options: -doc:xml-006.xml
2
using
System
;
3
4
namespace
Testing
5
{
6
/// <summary>
7
/// comment for enum type
8
/// </summary>
9
public enum
EnumTest
10
{
11
Foo
,
12
Bar
,
13
}
14
15
/// <summary>
16
/// comment for enum type
17
/// </incorrect>
18
public enum
EnumTest2
19
{
20
Foo
,
21
Bar
,
22
}
23
24
/**
25
<summary>
26
Java style comment for enum type
27
</summary>
28
*/
29
public enum
EnumTest3
30
{
31
Foo
,
32
Bar
,
33
}
34
35
public class
Test
36
{
37
public static void
Main
()
38
{
39
}
40
}
41
}
42