(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
modules/
ttp-1_a.C
// { dg-additional-options -fmodules-ts }
export module bob;

export template<template<typename> class TPL, typename T>
struct Wrapper
{
  using type = TPL<T>;
};