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-09-02 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0102-14.cs
blob
c115de930c5edc7ae1eedde3451f4c5602570708
1
// cs0102-14.cs: The type `T' already contains a definition for `A'
2
// Line: 6
3
4
class
T
{
5
public string
A { get { return "a"; }
}
6
public string
A
(
int
a
)
{ return "a"; }
7
}