1#pragma once2 3extern int some_val;4 5template <typename T>6struct TS {7 int tsmeth() {8 ++some_val; return undef_tsval;9 }10};11