scriptsharp icon indicating copy to clipboard operation
scriptsharp copied to clipboard

Assigning delegate to a Func<> causes silent build failure in v0.7.5

Open HazardX opened this issue 13 years ago • 0 comments

The following code causes the build to fail without an error message:

   class TestClass {
      public Func<bool> TestField = delegate() { return true; };
   }

Only tested in 0.7.5, not sure if it still applies to 0.8.

HazardX avatar Jan 06 '13 22:01 HazardX