cimplec / sim-c

A dynamically typed high-level front end for C

Home Page:https://cimplec.github.io/docs/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[BUG REPORT] Error when function calls and constants are passed in array initializer list

frankhart2018 opened this issue · comments

Describe the bug
When an array initializer list has both function call and constant value of the same type as the return type of function the function throws an error - "Too many unique types in initializers"

sim-C Code

fun sum(a, b)
    return a + b

MAIN
	var variable[] = {sum(1, 2), 2}
END_MAIN

Error Message
[Line 5] Error: Too many unique types in initializers

@frankhart2018 , I would like to work on this issue

Sure assigning this to you @pawankm21.