Compile dbgs that appear in expects

Closes #5480
This commit is contained in:
Ayaz Hafiz 2023-06-06 18:07:34 -05:00
parent 10dd57d45d
commit 43259b9ad6
No known key found for this signature in database
GPG key ID: 0E2A37416A25EF58
3 changed files with 107 additions and 36 deletions

View file

@ -3078,3 +3078,16 @@ fn record_update() {
"#
)
}
#[mono_test(mode = "test")]
fn dbg_in_expect() {
indoc!(
r###"
interface Test exposes [] imports []
expect
dbg ""
Bool.true
"###
)
}