Merge pull request #90448 from vnen/gdscript-infer-string-format

GDScript: Infer type with string format operator
This commit is contained in:
Rémi Verschelde
2024-04-10 17:49:49 +02:00
3 changed files with 13 additions and 0 deletions
@@ -0,0 +1,6 @@
# GH-88082
func test():
var x = 1
var message := "value: %s" % x
print(message)
@@ -0,0 +1,2 @@
GDTEST_OK
value: 1