blob: c146ca04f832b3baa65c537826b04d358b7261db [file] [log] [blame]
Daniel Jasperc531dae2013-09-11 10:37:35 +00001// RUN: %clang_cc1 -fsyntax-only -Wunused-variable -Wno-unused-const-variable -verify %s
2
3namespace {
4 int i = 0; // expected-warning {{unused variable 'i'}}
5 const int j = 0;;
6}