mirror of
https://github.com/odin-lang/Odin.git
synced 2026-08-28 07:51:33 +00:00
Merge pull request #7185 from subotac/fix/variadic-tuple-arguments
fix: pack tuple results into variadic arguments
This commit is contained in:
@@ -84,6 +84,7 @@ else
|
||||
fi
|
||||
$ODIN check ../test_issue_6979.odin -no-entry-point $COMMON_CHECK
|
||||
$ODIN build ../test_issue_7037.odin $COMMON -o:none
|
||||
$ODIN build ../test_issue_7167.odin $COMMON
|
||||
|
||||
if [[ $($ODIN build ../test_issue_7108.odin $COMMON 2>&1 >/dev/null | grep -c "Error:") -eq 2 ]] ; then
|
||||
echo "SUCCESSFUL 1/1"
|
||||
|
||||
9
tests/issues/test_issue_7167.odin
Normal file
9
tests/issues/test_issue_7167.odin
Normal file
@@ -0,0 +1,9 @@
|
||||
// Tests issue #7167 https://github.com/odin-lang/Odin/issues/7167
|
||||
package test_issues
|
||||
|
||||
import "core:fmt"
|
||||
import "core:path/filepath"
|
||||
|
||||
main :: proc() {
|
||||
fmt.printf(filepath.join({}))
|
||||
}
|
||||
Reference in New Issue
Block a user