diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-11-05 15:18:32 -0500 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-11-05 15:18:32 -0500 |
| commit | b8d7eabc023bf9db0150049d8e909086f6ad91bc (patch) | |
| tree | 5b678c7949638b3f07095affc04611f0422ef8c7 /test/inline_c.tm | |
| parent | 2fa26e6af3ec1599396d9260ef44b0d035b1f686 (diff) | |
Deprecate bit-width integer/num literals in favor of using type
constructors
Diffstat (limited to 'test/inline_c.tm')
| -rw-r--r-- | test/inline_c.tm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/inline_c.tm b/test/inline_c.tm index 876e78fd..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[32] + = Int32(3) >> inline C { say(Text("Inline C code works!"), true); |
