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
$ g++ -std=c++11 -pthread inctest.cpp
inctest.cpp:2812:40: error: 'inc' does not refer to a value
run(println(),run(FN__4519(),inc));
^
inctest.cpp:2685:24: note: declared here
class inc final : public lambda_i{
Note: replacing inc with (identity inc) works and prints the number 1 as expected.
The text was updated successfully, but these errors were encountered:
I create inctest.clj with the following content
When compiling, an error occurs:
Note: replacing
inc
with(identity inc)
works and prints the number1
as expected.The text was updated successfully, but these errors were encountered: