13 lines
No EOL
251 B
C
13 lines
No EOL
251 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(1, 2);
|
|
if( i + j == 1)
|
|
assert(j == 1);
|
|
} |