﻿id	summary	reporter	owner	description	type	status	priority	component	version	resolution	keywords	cc
80	With statement and function parameters.	Thierry Delisle	Rob Schluntz <rschlunt@…>	"Users expect parameters to have priority over with statements, e.g.,
{{{
#include <fstream>

struct X {
	int value;
};

void set(X & this, int value) with(this) {
	this.value = value;
}

int main() {
	X x;
	set(x, 3);
	sout | x.value | endl;
	return 0;
}
}}}
I think the least surprising result would be that this prints 3, i.e., the parameter value has precedence over the field value."	defect	closed	major	cfa-cc	1.0	fixed	with statment	
