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
2007-03-09 Chris Toshok <toshok@ximian.com>
[mcs.git]
/
errors
/
cs0465.cs
blob
192c3347929ca6095184bec18ef179317d2f7dd9
1
// cs0465.cs: Introducing a 'Finalize' method can interfere with destructor invocation. Did you intend to declare a destructor?
2
// Line: 7
3
// Compiler options: -warnaserror -warn:1
4
5
interface
I
6
{
7
void
Finalize
();
8
}