'__assume' contains effect 'effect'
The value passed to an __assume statement was modified. By default, this warning is off.
The following sample generates C4557:
// compile with /Wall void main() { int i; __assume(i++); // C4557 }