blob: 0e49a32a1dd5d9d4a25f3108edafbf204960c448 [file] [log] [blame]
extern void sf ( __const char *);
struct Matrix{
int operator[](int n){
sf ( __PRETTY_FUNCTION__);
}
int operator[](int n)const{
sf ( __PRETTY_FUNCTION__);
}
};
void calcmy(Matrix const &b, Matrix &c, int k){
b[k];
c[k];
}