The following fails to compile: ``` static void test(in string a, in string b) { auto filter = parseJSONValue(a); auto obj = parseJSONValue(b); } ``` And so does the following: ``` auto filter = parseJSONValue(`{}`); ```