mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-18 21:40:32 +00:00
Fix string stream crashing when created on nimscript due to last fix (#19717)
This commit is contained in:
@@ -76,3 +76,7 @@ block:
|
||||
doAssert(ss.getPosition == 5) # haven't moved
|
||||
ss.setPosition(0) # Ensure we dont error with writing over literals on arc/orc #19707
|
||||
ss.write("hello")
|
||||
|
||||
static: # Ensure streams it doesnt break with nimscript on arc/orc #19716
|
||||
let s = newStringStream("a")
|
||||
discard s.data
|
||||
|
||||
Reference in New Issue
Block a user