]> andersk Git - splint.git/blame - test/impabstract.out
Removed /bin/csh from tainted/Makefile
[splint.git] / test / impabstract.out
CommitLineData
86d93ed3 1
2Finished checking --- no warnings
3
4impabstract.c: (in function f)
5impabstract.c:11:7: Left operand of < is abstract type (mint): m < 2
6 An abstraction barrier is broken. If necessary, use /*@access <type>@*/ to
7 allow access to an abstract type. (Use -abstract to inhibit warning)
8impabstract.c:13:14: Return value type mint does not match declared type int: m
9 Underlying types match, but mint is an abstract type that is not accessible
10 here.
11
12Finished checking --- 2 code warnings, as expected
13
14impabstract.c:2:28: Mutable abstract type cint declared without pointer
15 indirection: int (violates assignment semantics)
16 LCL semantics requires that a mutable type exhibits sharing semantics. In
17 order for objects to be shared a indirection is necessary in the
18 representation. A mutable type may be represented by a pointer or an abstract
19 mutable type. Handles into static data are fine, too, but will generate this
20 error message unless it is suppressed. (Use -mutrep to inhibit warning)
21impabstract.c:2:28: Datatype cint inconsistently declared as concrete type
22 A function, variable or constant is redefined with a different type. (Use
23 -incondefs to inhibit warning)
24 impabstract.lcl:2:1: Specification of cint
25impabstract.c: (in function f)
26impabstract.c:6:7: Left operand of > is abstract type (cint): c > 3
27 An abstraction barrier is broken. If necessary, use /*@access <type>@*/ to
28 allow access to an abstract type. (Use -abstract to inhibit warning)
29impabstract.c:8:14: Return value type cint does not match declared type int: c
30 Underlying types match, but cint is an abstract type that is not accessible
31 here.
32
33Finished checking --- 4 code warnings, as expected
This page took 0.04651 seconds and 5 git commands to generate.