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-05-13 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0722-2.cs
blob
514ea28dbfcbdc5e90a7d02d3e29c03176239fae
1
// cs0722-2.cs: `StaticClass': static types cannot be used as return types
2
// Line: 8
3
4
static class
StaticClass
{
5
}
6
7
class
MainClass
{
8
public static
StaticClass Prop
{
9
get
{
10
return null
;
11
}
12
}
13
}