(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
torture/
pr43905.C
extern void sf ( __const char *);
struct Matrix{
  int operator[](int n){
    sf ( __PRETTY_FUNCTION__);
    return 0;
  }
  int operator[](int n)const{
    sf ( __PRETTY_FUNCTION__);
    return 0;
  }
};
void calcmy(Matrix const &b, Matrix &c, int k){
  b[k];
  c[k];
}