blob: 8bd8fc71416cb291710d081ea2869fdc5809b16b [file] [log] [blame]
// checking for extern template extension
/***************************************************************************
*
* 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.
*
**************************************************************************/
#include "config.h"
// include a file containing the definition of a template
// and an extern template directive referencing an explicit
// instantiation of the same template in extern_template_imp.o
#include "extern_template_imp.h"
// establish a dependency on extern_template_imp.o to make sure
// the extern_template_imp.cpp is compiled before this file
#ifndef _RWSTD_NO_extern_template_imp
// link with the object file below
// LDOPTS = extern_template_imp.o
#endif // _RWSTD_NO_extern_template_imp
int main ()
{
S<int> s;
// call member template functions on a specialization of
// a class template explicitly instantiated in one file
// and declared extern template in extern_template_imp.h
// to detect if the extern template declaration prevents
// the implicit instantiation of the member templates
// HP aCC 3 and 5 bug -- see STDCXX-270:
// http://issues.apache.org/jira/browse/STDCXX-270
return s.inline_member_template (0) + s.member_template (0);
}