You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-----
enum string value = "foo";
struct A
{
void test(A a)
{
auto x = a.value;
}
}
void main() { }
-----
$ dmd test.d
Error: function expected before (), not "foo" of type string
It looks like the compiler attempted to do UFCS on a non-function. The above message is reproduced with:
auto x = value(a);
The text was updated successfully, but these errors were encountered:
Andrej Mitrovic (@AndrejMitrovic) reported this on 2013-09-03T13:37:01Z
Transferred from https://issues.dlang.org/show_bug.cgi?id=10957
CC List
Description
The text was updated successfully, but these errors were encountered: