Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1177,6 +1177,66 @@ public XAttribute(int[] values) { }
}.RunAsync();
}

[Fact]
public async Task TestNonTargetTypedAttributeArgument1()
{
await new VerifyCS.Test
{
TestCode = """
[X(new string[] { })]
class C
{
}

public class XAttribute : System.Attribute
{
public XAttribute(object values) { }
}
""",
LanguageVersion = LanguageVersion.CSharp12,
}.RunAsync();
}

[Fact]
public async Task TestNonTargetTypedAttributeArgument2()
{
await new VerifyCS.Test
{
TestCode = """
[X(new string[] { "" })]
class C
{
}

public class XAttribute : System.Attribute
{
public XAttribute(object values) { }
}
""",
LanguageVersion = LanguageVersion.CSharp12,
}.RunAsync();
}

[Fact]
public async Task TestNonTargetTypedAttributeArgument3()
{
await new VerifyCS.Test
{
TestCode = """
[X(new[] { "" })]
class C
{
}

public class XAttribute : System.Attribute
{
public XAttribute(object values) { }
}
""",
LanguageVersion = LanguageVersion.CSharp12,
}.RunAsync();
}

[Fact]
public async Task TestTargetTypedReturn1()
{
Expand Down
Loading