aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/inherit/namespace-as-base.C
blob: 041c18abc1caa30661a8ecc7baaf6ddce2cfc446 (plain)
1
2
3
4
5
6
7
8
9
// { dg-do compile }

namespace Out {
  namespace In {
  }
}

class Klasse : public Out::In {  // { dg-error ".*" "" }
};