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
/
cs1608.cs
blob
f8a4fdc4a7c4ae9da0ee134403b7552bc6c7fae8
1
// cs1608.cs: The RequiredAttribute attribute is not permitted on C# types
2
// Line: 6
3
4
using
System
.
Runtime
.
CompilerServices
;
5
6
[
RequiredAttribute
(
typeof
(
object
))]
7
class
ClassMain
{
8
}
9