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-28 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs0626-6.cs
blob
5de7d3089a6a8cfeb451c2799dfb17c357c469c2
1
// CS0626: `C.this[int]' is marked as an external but has no DllImport attribute. Consider adding a DllImport attribute to specify the external implementation
2
// Line: 7
3
// Compiler options: -warnaserror -warn:1
4
5
class
C
6
{
7
public extern char this
[
int
index
]
8
{
9
get
;
10
}
11
}