-
Notifications
You must be signed in to change notification settings - Fork 167
Closed
Description
public override Task NestedDeclarationTest()
{
var inputContents = @"struct CustomNativeNew {};
struct CustomNativeNewNested
{
CustomNativeNew Nested;
};
";
var expectedOutputContents = @"namespace ClangSharp.Test
{
public partial struct CustomNativeNew
{
}
public partial struct CustomNativeNewNested
{
public CustomNativeNew Nested;
}
}
";
return ValidateGeneratedCSharpLatestWindowsBindingsAsync(inputContents, expectedOutputContents);
}Found after fixing #223 (actually, first uncovered when working on next-generation SharpGen based on ClangSharp).
Metadata
Metadata
Assignees
Labels
No labels

