19 lines
385 B
C#
19 lines
385 B
C#
using System;
|
|
|
|
namespace Coverlet.Core.Samples.Tests
|
|
{
|
|
public class Issue1302
|
|
{
|
|
public void Run()
|
|
{
|
|
[System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage]
|
|
static Func<string, bool> LocalFunction()
|
|
{
|
|
return myString => myString.Length == 10;
|
|
}
|
|
|
|
LocalFunction();
|
|
}
|
|
}
|
|
}
|