aboutsummaryrefslogtreecommitdiff
path: root/test/inline_c.tm
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-03-25 15:40:59 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-03-25 15:40:59 -0400
commit1f9147187d66e95a0ffedd4d5595ec98646b5fe1 (patch)
tree14281e5cbde8e15fae63953b72844fb1a11d6f73 /test/inline_c.tm
parentd88d8648dc7802fbeac2f28dc5f2ef8fdfe1a9e4 (diff)
Make docstring tests use an actual expression AST instead of text
matching
Diffstat (limited to 'test/inline_c.tm')
-rw-r--r--test/inline_c.tm2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/inline_c.tm b/test/inline_c.tm
index 6e5b119e..3c0949cd 100644
--- a/test/inline_c.tm
+++ b/test/inline_c.tm
@@ -1,7 +1,7 @@
func main():
>> inline C:Int32 { int x = 1 + 2; x }
- = 3
+ = Int32(3)
>> inline C {
say(Text("Inline C code works!"), true);