1 // Copyright (C) 2005 Free Software Foundation, Inc.
2 // Contributed by Nathan Sidwell 5 Jan 2005 <nathan@codesourcery.com>
5 // Origin: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
7 template<class T> struct Vec {
9 T& operator[](int i) const;
12 template<class T> inline T& Vec<T>::operator[](int i) const
17 inline double foo(Vec<double> v)