swig/Examples/test-suite/csharp/nested_in_template_runme.cs

11 lines
265 B
C#

using System;
using nested_in_templateNamespace;
public class runme {
static void Main() {
var cd = new OuterTemplate1.ConcreteDerived(88);
if (cd.m_value != 88)
throw new Exception("ConcreteDerived not created correctly");
}
}