As usual while waiting for the next release - don't forget to check the nightly builds in the forum.
#include <iostream>using namespace std;int function(int x);int main(){ int x; function(x); return 0;}int function(int x){ cin>>x; return x}