mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-03 19:58:18 +00:00
parent
b3c598fcf6
commit
c91b82198d
3 changed files with 21 additions and 2 deletions
|
@ -0,0 +1,6 @@
|
|||
procedure Test.0 ():
|
||||
let Test.1 : Str = "";
|
||||
dbg Test.1;
|
||||
dec Test.1;
|
||||
let Test.2 : I64 = 42i64;
|
||||
ret Test.2;
|
|
@ -3133,3 +3133,16 @@ fn drop_specialize_before_jump() {
|
|||
"#
|
||||
)
|
||||
}
|
||||
|
||||
#[mono_test]
|
||||
fn dbg_str_followed_by_number() {
|
||||
indoc!(
|
||||
r#"
|
||||
app "test" provides [main] to "./platform"
|
||||
|
||||
main =
|
||||
dbg ""
|
||||
42
|
||||
"#
|
||||
)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue