csharp: fix build warning related with an unused field in an unit test

Test Plan: `meson test`

Reviewers: lauromoura, felipealmeida, segfaultxavi

Reviewed By: lauromoura

Subscribers: cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D9240
This commit is contained in:
Vitor Sousa 2019-07-08 17:53:41 +02:00 committed by Xavi Artigas
parent d01a121aa9
commit 1193e1a757
1 changed files with 1 additions and 1 deletions

View 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.