#include <Arduino.h>
#line 1 {{QuoteCppString .sketchMainFile}}
template<> class FastPin<0> : public _ARMPIN<0, 10, 1 << 10, 0> {};;

template<> class FastPin<0> : public _ARMPIN<0, 10, 1 < 10, 0> {};;

template <class SomeType, template <class> class OtherType> class NestedTemplateClass
{
  OtherType<SomeType> f;
};

#line 10 {{QuoteCppString .sketchMainFile}}
void printGyro();
#line 18 {{QuoteCppString .sketchMainFile}}
template<int X> func( c< 1<<X> & aParam) ;
#line 10 {{QuoteCppString .sketchMainFile}}
void printGyro()
{
}

template <int P> class c {};
c< 8 > bVar;
c< 1<<8 > aVar;

template<int X> func( c< 1<<X> & aParam) {
}

