Davor Ocelic
Davor Ocelic
For reference, on 1.13.1 the same code from the initial report still crashes. Also, it doesn't seem affected by the `p x` line, crash always happens: ``` crystal test5.cr 0..20...
For reference, the issue is still present in 1.13.1.
(Just a note that the issue is still present in 1.2.0)
For reference, the issue is still present on 1.13.1. ``` crystal test3.cr X.class ```
For reference, the issue is still present on 1.13.1: ``` crystal test2.cr Showing last frame. Use --error-trace for full trace. Error: instance variable '@x' of X must be Int32, not...
```cr class X def initialize 10.times do if @x = "test" # =, not == end end end end X.new ``` https://carc.in/#/r/a3uu ``` Showing last frame. Use --error-trace for full...
If relevant, just mentioning that this issue is still present on 1.13.1. Using the same example code: ```sh crystal test.cr Showing last frame. Use --error-trace for full trace. Error: instance...
Mm this is interesting, I thought those were resolved a while ago. If by chance you're up for submitting a patch, you could check with `git log -p` how those...
I believe this is coming from either: qt5.cr ``` config/find_paths.yml: - shell: "{LLVM_CONFIG_BINARY} --ldflags" ``` or bindgen: ``` clang/find_clang.cr:OPTIONS[:llvm_ld_flags] = output_of(OPTIONS[:llvm_config], "--ldflags") ``` In both cases the cause of the...