Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2005-05-10 17:41:52 +0400
committerMarek Safar <marek.safar@gmail.com>2005-05-10 17:41:52 +0400
commitc5be8c7e19dc7c5a4abf9d9b46c10ef66ca0afe9 (patch)
tree3ea53b0f8e6b6708561e3efc8f6e1cfd4cfcd732 /mcs/errors/cs0465.cs
parent96fd5e97b2eb1598f67c0459f638f83646c23dd0 (diff)
new tests
svn path=/trunk/mcs/; revision=44327
Diffstat (limited to 'mcs/errors/cs0465.cs')
-rw-r--r--mcs/errors/cs0465.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/mcs/errors/cs0465.cs b/mcs/errors/cs0465.cs
new file mode 100644
index 00000000000..192c3347929
--- /dev/null
+++ b/mcs/errors/cs0465.cs
@@ -0,0 +1,8 @@
+// cs0465.cs: Introducing a 'Finalize' method can interfere with destructor invocation. Did you intend to declare a destructor?
+// Line: 7
+// Compiler options: -warnaserror -warn:1
+
+interface I
+{
+ void Finalize ();
+}