1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-optimized" } */
3 
4 static const int conststaticvariable;
5 
f(void)6 int f(void)
7 {
8   return conststaticvariable;
9 }
10 
11 /* There should be no reference to conststaticvariable as we should have
12    inlined the 0. */
13 /* { dg-final { scan-tree-dump-times "conststaticvariable" 0 "optimized"} } */
14