summaryrefslogtreecommitdiff
path: root/tests/src/Loader/classloader/regressions/dev11_383846/LibraryThatImplementsStruct.cs
blob: 04a3e35e8b86f32766a54fa7ce3981ac524337cd (plain)
1
2
3
4
5
6
7
8
9
10
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

using System;
// this struct will be referenced via type forwarder
public struct ProblematicStructThatIsForwarded
{
    public int value;
}