We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9740d07 commit 23fd386Copy full SHA for 23fd386
src/SourceGeneration.Reflection.SourceGenerator.Test/UnitTest1.cs
@@ -19,9 +19,10 @@ public void TestMethod1()
19
namespace SourceGeneration.Reflection.Sample2
20
{
21
[SourceReflection]
22
- public class TestClass
23
- {
24
- public T InvokeStructConstraint<T>(T t) where T: struct => t;
+ public class BaseClass
+ {
+ public int A { get; set; } = 1;
25
+ public int B = 2;
26
}
27
28
""";
0 commit comments