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-004.cs
blob
7fca0849e894182ca033f3ecf00f6a9574e78e07
1
// Compiler options: -doc:xml-004.xml
2
using
System
;
3
4
namespace
Testing
5
{
6
/// <summary>
7
/// comment for struct
8
/// </summary>
9
public struct
StructTest
10
{
11
}
12
13
/// <summary>
14
/// incorrect markup comment for struct
15
/// </incorrect>
16
public struct
StructTest2
17
{
18
}
19
20
/**
21
<summary>
22
Java style commet
23
</summary>
24
*/
25
public struct
StructTest3
26
{
27
}
28
29
public class
Test
30
{
31
public static void
Main
()
32
{
33
}
34
}
35
}
36