aboutsummaryrefslogtreecommitdiff
path: root/clang/test/Modules/Inputs/module-transtive-instantiation/Templ.cppm
blob: ee41b5374613fc870021233c75c82433c4c98b1e (plain)
1
2
3
4
5
6
7
8
export module Templ;
export template <class T>
class G {
public:
    T operator()() {
        return T();
    }
};