]> andersk Git - splint.git/blame - test/conditions/releases.c
noexpand always false.
[splint.git] / test / conditions / releases.c
CommitLineData
80ee600a 1#include <stdlib.h>
2
3typedef struct ipp_s *ipp;
4
5struct ipp_s
6{
7 /*@only@*/ /*@notnull@*/
8 int *ip;
9} ;
10
11extern void ipp_delete(/*@only@*/ /*@notnull@*/ ipp This) ;
12
13void ipp_delete(ipp This)
14{
15 free(This); /* should be error for not deleting This->ip! */
16}
This page took 0.07119 seconds and 5 git commands to generate.