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

« back to all changes in this revision

Viewing changes to Puma/tests/misc/test3.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
/***********************************************
 
2
 ** template template arguments and default   **
 
3
 ** arguments of template template parameters **
 
4
 ***********************************************/
 
5
 
 
6
template <class T>
 
7
class Y {
 
8
};
 
9
 
 
10
template <template <class T> class TT, template <class T> class TTT = TT>
 
11
class Z {
 
12
  TTT<int> z;
 
13
};
 
14
 
 
15
Z<Y> z;