1 // Compile with "cl /c /Zi /GR- FilterTest.cpp"
2 // Link with "link FilterTest.obj /debug /nodefaultlib /entry:main"
4 class FilterTestClass
{
6 typedef int NestedTypedef
;
13 int foo() const { return IntMemberVar
; }
17 double DoubleMemberVar
;
21 double DoubleGlobalVar
;
22 typedef int GlobalTypedef
;
32 return (int)OneByte
* 2;
38 static FilterTestClass FC
;
40 return (CFunc() + BFunc()) * IntGlobalVar
+ FC
.foo();
43 int main(int argc
, char **argv
) {
44 FilterTestClass TestClass
;