Created attachment 164645 [details] Go code Following Go code crashes Plasma. package main func main() { var notes []int for i := 0; i < 1e12; i++ { notes = append(notes, i) } } STEPS TO REPRODUCE 1. Copy / paste the code 2. Run Go code SOFTWARE/OS VERSIONS Linux/KDE Plasma: 6.6.9-1-MANJARO (64-bit) KDE Plasma Version: 5.27.10 KDE Frameworks Version: 5.113.0 5.15.11 Qt Version: 5.15.11
Seems that runs out of memory. You're appending one trillion items.