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 #4202 from marek-safar/compression
[mono-project.git]
/
mcs
/
errors
/
cs0117-8.cs
blob
1e69f70f03dadfbda0dbe6f108c6b81e53ce8082
1
// CS0117: `X' does not contain a definition for `P'
2
// Line: 11
3
4
class
X
5
{
6
public void
Test
()
7
{
8
Foo
();
9
}
10
11
public static void
Foo
(
string
Product
=
X
.
P
)
12
{
13
}
14
}