summaryrefslogtreecommitdiff
path: root/Examples/test-suite/import_fragments.i
blob: 26b87cdb22645d9978567d323c5ab11f1293f817 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
%module import_fragments

// Check %fragments forced inclusion does not result in code generation when using %import
%import "import_fragments_a.i"

%{
template<typename T>
struct TemplateA4 {};
%}

%template(TemplateA4Int) TemplateA4<int>;

%inline %{
int getImport4() {
  // Requires the ImportA4 fragment to be generated in order to compile
  return ImportA4;
}
%}