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
2009-11-20 Marek Safar <marek.safar@gmail.com>
[mcs.git]
/
errors
/
cs0578.cs
blob
828e47597fca3740f58e0ff00d5d337564fd69be
1
// cs0578.cs: Conditional not valid on `MainClass.Foo()' because its return type is not void
2
// Line: 10
3
4
class
MainClass
{
5
[
System
.
Diagnostics
.
Conditional
(
"DEBUG"
)]
bool
Foo
() {
6
return false
;
7
}
8
9
public static void
Main
() {}
10
}
11