Issue 106: Compilation issue.
Status:  Fixed
Owner: ----
Closed:  Aug 2011
Reported by stephane...@gmail.com, Mar 15, 2011
What steps will reproduce the problem?
1. Compile the code below with the cpp target
2.
3.

What is the expected output? What do you see instead?
It should compile.
It does not compile - not sure about the explanation..

Please complete the following class with minimal code reproducing the
problem :

class Foo {
	public static function bar(p : Int, f : Int -> Int) : Int {
		return p;
	}

	inline public static function bituric(p : Int) : Int {
		var res = 5;
		return res;
	}

	public function test() {
		bar(bituric(5), function (p) return 5);
	}
}

Please provide any additional information below.

I've tried to shrink the example but looks like a minimal form to reproduce the issue.

Aug 10, 2011
Project Member #1 gameh...@gmail.com
This seems to be fixed now.
Status: Fixed