Skip to content

Commit

Permalink
Intentionally fail CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jcouv committed Mar 21, 2024
1 parent d68637b commit fa00b99
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/Compilers/CSharp/Test/Emit3/Tests.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
// 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.

#nullable disable

using Microsoft.CodeAnalysis.CSharp.Test.Utilities;
using Xunit;

namespace Microsoft.CodeAnalysis.CSharp.UnitTests.CodeGen
{
public class Tests : CSharpTestBase
{
[Fact]
public void Fail()
{
Assert.False(true);
}
}
}

0 comments on commit fa00b99

Please sign in to comment.