1 // Class funk has a constructor and an ordinary method
8 void getFunky(int a
, int b
);
17 void funk::getFunky(int a
, int b
)
24 // Class A has const and volatile methods
31 int bar (int arg
) const;
32 int baz (int arg
, char c
) volatile;
33 int qux (int arg
, float f
) const volatile;
42 int A::bar (int arg
) const
47 int A::baz (int arg
, char c
) volatile
49 return arg
- 2 * x
+ c
;
52 int A::qux (int arg
, float f
) const volatile
73 // Test for CHFts23426 follows