blob: 83a75c6cdb72aa10251f927e1b19e83a0885b675 [file] [log] [blame]
// checking static template members
/***************************************************************************
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the License); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
* implied. See the License for the specific language governing
* permissions and limitations under the License.
*
* Copyright 1999-2007 Rogue Wave Software, Inc.
*
**************************************************************************/
#if 0 // guard invalid preprocessor symbol below
// establish a dependency on collapse_template_statics.lib.*
# ifndef _RWSTD_NO_collapse_template_statics.lib
// link this compiled translation unit with the lib below
// LDOPTS = collapse_template_statics.lib$(LIBSUFFIX)
# endif // _RWSTD_NO_collapse_template_statics.lib
#endif // 0
// also defined in collapse_template_statics.lib.cpp
template <class T>
struct S
{
// multiple instances of `t' must be collapsed
static T t;
};
template <class T>
T S<T>::t;
// bar() returns S<int>::t++
extern int bar ();
int main ()
{
// compilers that corectly collapse static template members
// behave as commented below (others will return 0 from bar())
int i = S<int>::t++; // yields 0
int j = bar (); // should return 1
return !(i != j);
}