repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs0579-2.cs
blob
18708cef7d57c1ed54a14bb45d71e2940cedfea2
1
// cs0579-2.cs: The attribute `System.Diagnostics.DebuggableAttribute' cannot be applied multiple times
2
// Line: 7
3
4
using
System
.
Diagnostics
;
5
6
[
module
:
DebuggableAttribute
(
false
,
false
)]
7
[
module
:
DebuggableAttribute
(
false
,
false
)]
8
9
class
MainClass
{
10
static void
Main
()
11
{
12
}
13
}