We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99a3156 commit c151824Copy full SHA for c151824
1 file changed
src/cmd_parser.cpp
@@ -242,14 +242,13 @@ bool CmdParser::parseNextCommand()
242
Expr tup = d_state.mkExpr(Kind::TUPLE, argTypes);
243
std::vector<Expr> pargs = Expr::getVariables(tup);
244
Expr fv = d_eparser.findFreeVar(ft.second, pargs);
245
- Trace("ajr-temp") << "Looking for free variable in " << ft.second << " returned " << fv << std::endl;
246
if (!fv.isNull())
247
{
248
if (ck!=Attr::NONE)
249
250
d_lex.parseError("Ambiguous functions cannot have attributes");
251
}
252
- else if(!opaqueArgs.empty())
+ else if (!opaqueArgs.empty())
253
254
d_lex.parseError("Ambiguous functions cannot have opaque arguments");
255
0 commit comments