blob: 204aa7a366e41c4d35c4f70d42e9ef3c0dfb0f71 [file] [log] [blame]
// PR c++/104539
// { dg-additional-options "-O3 -fdump-ipa-inline" }
// { dg-final { scan-ipa-dump-not "overwritten at link time" "inline" } }
template <int>
//inline
int f() {
return 0;
}
template int f<0>();
int g() {
return f<0>() + 1;
}