~ubuntu-branches/ubuntu/maverick/aspectc++/maverick

« back to all changes in this revision

Viewing changes to Puma/tests/test17.cc

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2008-04-10 17:40:52 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20080410174052-xdnsm7oi8hauyyf1
Tags: 1.0pre4~svn.20080409+dfsg-3
Fix another missing include, this time in Ag++/StdSystem.cc

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
namespace N {
2
 
  template <typename T> int foo1(int);
3
 
  template <typename T> int foo2(T);
4
 
  template <int I> int foo3();
5
 
}
6
 
template <typename T> int foo4(int);
7
 
 
8
 
int res1 = N::foo1<int>(1);
9
 
int res2 = N::foo2<int>(1);
10
 
int res3 = N::foo3<1>();
11
 
int res4 = N::template foo3<1>();
12
 
int res5 = foo4<int>(1);