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
Merge pull request #3806 from BrzVlad/feature-parallel-gc-final
[mono-project.git]
/
mcs
/
errors
/
cs1591-12.cs
blob
69f4d84f04bc2aa5bb36e04248f3b05aa2110652
1
// CS1591: Missing XML comment for publicly visible type or member `Testing.IFoo.Foo'
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 interface IFoo
11
/// </summary>
12
public interface
IFoo
13
{
14
string
Foo { get; }
15
}
16
}