We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
test_ambiguities
1 parent 59eb815 commit 33e0e21Copy full SHA for 33e0e21
src/ambiguities.jl
@@ -139,8 +139,10 @@ function _find_ambiguities(
139
reg_match = match(r"(\d+) ambiguities found", strout)
140
141
reg_match === nothing && error(
142
- "Failed to parse output of `detect_ambiguities`. The output was:\n" *
143
- strout,
+ "Failed to parse output of `detect_ambiguities`. The stdout was:\n" *
+ strout *
144
+ "\n\n The stderr was:\n" *
145
+ strerr,
146
)
147
148
parse(Int, reg_match.captures[1])
0 commit comments