csharp: fix build warning related with an unused field in an unit test
authorVitor Sousa <vitorsousa@expertisesolutions.com.br>
Mon, 8 Jul 2019 15:53:41 +0000 (17:53 +0200)
committerShinwoo Kim <cinoo.kim@samsung.com>
Wed, 10 Jul 2019 02:28:25 +0000 (11:28 +0900)
Test Plan: `meson test`

Reviewers: lauromoura, felipealmeida, segfaultxavi

Reviewed By: lauromoura

Subscribers: cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D9240

src/tests/efl_mono/Inheritance.cs

index 74c1086..26f51c5 100644 (file)
@@ -54,7 +54,7 @@ class TestInheritance
 
     internal class Inherit3Child : Dummy.TestObject
     {
-        Inherit3Parent parent;
+        //Inherit3Parent parent;
         public Inherit3Child(Inherit3Parent parent) : base(parent)
         {
             // WARNING: Uncommenting the line below causes the parent-child cycle to leak.