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
2007-03-19 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
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
}