@function foo() {
	$limit: 10;
	$y: 0;
	@for $x from 1 through $limit {
	  $limit: 4;
	  $y: $y + $x;
	}
	@return $y;
}

div {
	width: foo();
}