15 lines
272 B
C
15 lines
272 B
C
|
/*
|
||
|
* Cours "Sémantique et Application à la Vérification de programmes"
|
||
|
*
|
||
|
* Josselin Giet 2021
|
||
|
* Ecole normale supérieure, Paris, France / CNRS / INRIA
|
||
|
*/
|
||
|
|
||
|
void main(){
|
||
|
int i = 0;
|
||
|
int j = rand(0, 2);
|
||
|
int x = 0;
|
||
|
if( i * j == x )
|
||
|
assert(j == 0); //@KO
|
||
|
}
|