From 783110bba7ff4253226a0190cf71aa2a91d573d7 Mon Sep 17 00:00:00 2001 From: belav Date: Wed, 9 Jun 2021 16:38:40 -0500 Subject: [PATCH] Adding an edge case that I found from formatting aspnetcore --- .../ObjectCreationExpression/ObjectCreationExpressions.cst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Src/CSharpier.Tests/TestFiles/ObjectCreationExpression/ObjectCreationExpressions.cst b/Src/CSharpier.Tests/TestFiles/ObjectCreationExpression/ObjectCreationExpressions.cst index 06c3fa993..c31682647 100644 --- a/Src/CSharpier.Tests/TestFiles/ObjectCreationExpression/ObjectCreationExpressions.cst +++ b/Src/CSharpier.Tests/TestFiles/ObjectCreationExpression/ObjectCreationExpressions.cst @@ -32,4 +32,8 @@ public class ClassName { Property1 = true }; + + public SomeGenericObject WithGenericLongEnoughToBreak = new SomeGenericObject< + SomeRandomObject + >("someRandomValue"); }