Abraxas/CCS  Home  Table of Contents

Module - 58.html

ABRAXAS SOFTWARE - CodeCheck CCS Test-Suite

CCS -C Test Suite for Module - 58.cpp

// 58) Keep types and functions in separate namespaces unless they're specifically intended to work together.

#include 
/*

namespace std {

template class vector {

};
}
*/
namespace N {
    struct X {};



Function Name: operator+()

    template < class t > int * operator+(t){}
}
int f58(void);
int f58(void) 



Function Name: f58()

{
    std::vector v(100);
    v[0];
}

Abraxas/CCS  Home  Table of Contents

ABRAXAS SOFTWARE - CodeCheck CCS Test-Suite CCS