view gcc/testsuite/g++.old-deja/g++.law/template1.C @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

// { dg-do assemble  }
// GROUPS passed templates

class String {
        char s[100];
};

template <class Element>
class Art {
public:
        Element *data;
        Art() { data=new Element[100]; }
};

template <class Key,class Value>
class Assoc {
public:
        struct KeyValue {
                Key key;
                Value value;
                int filled;
        };

        Art<KeyValue> data;
        int fill;
};

int main() {
        Assoc<String,String> table;
}