Water and the => operator

In VS2017 I can write a read only property like this:

public string CustNm => License.TryGetValue(“CustNm”, out var value) ? value : string.Empty;

In Water this causes a compiler error:

E: Internal error: System.NullReferenceException: Object reference not set to an instance of an object.

This works:

public string CustNm
{
get
{
return License.TryGetValue(“CustNm”, out var value) ? value : string.Empty;
}
}

// Thom

Thanks, logged as bugs://81580

bugs://81580 got closed with status fixed.