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
[Http]: Cosmetic, remove some dead code.
[mono-project.git]
/
mcs
/
errors
/
cs1614.cs
blob
2c3a9369079322ff04b59fe1453645c032e8dd49
1
// CS1614: `A' is ambiguous between `A' and `AAttribute'. Use either `@A' or `AAttribute'
2
// Line: 6
3
// Bug #56456
4
5
using
System
;
6
public class
A
:
Attribute
{
7
[
A
]
8
public static void
Main
() {
9
}
10
}
11
public class
AAttribute
:
Attribute
{}