interface IExample
{
// stuff ...
class Tester
{
}
}
I'm trying to make an instance of it like:
auto tester = new IExample.Tester();
And I get the above error.
A Guy With a Question via Digitalmars-d-learn Wed, 22 Nov 2017 14:24:46 -0800
interface IExample
{
// stuff ...
class Tester
{
}
}
I'm trying to make an instance of it like:
auto tester = new IExample.Tester();
And I get the above error.