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
[bcl] Update BCL Linked Size
[mono-project.git]
/
mcs
/
errors
/
cs0465-2.cs
blob
8248e5464467851c6bc8fb42b7f17bd6ec7bac27
1
// CS0465: Introducing `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
class
T
6
{
7
static void
Finalize
()
8
{
9
}
10
}