Index: tools/clang/blink_gc_plugin/tests/delayed_parsing.cpp |
diff --git a/tools/clang/blink_gc_plugin/tests/delayed_parsing.cpp b/tools/clang/blink_gc_plugin/tests/delayed_parsing.cpp |
new file mode 100644 |
index 0000000000000000000000000000000000000000..fed525004ef422226abfc1fcb4e6be8d6efef69b |
--- /dev/null |
+++ b/tools/clang/blink_gc_plugin/tests/delayed_parsing.cpp |
@@ -0,0 +1,21 @@ |
+#include "heap/stubs.h" |
+ |
+namespace blink { |
+ |
+struct HeapObject : public GarbageCollected<HeapObject> { |
+ void trace(Visitor*) { } |
+}; |
+ |
+template<typename T> |
+class TemplateBase |
+ : public GarbageCollected<TemplateBase<T> > { |
+public: |
+ void trace(Visitor* visitor) { visitor->trace(m_obj); } |
+private: |
+ Member<HeapObject> m_obj; |
+}; |
+ |
+class Subclass : public TemplateBase<Subclass> { |
+}; |
+ |
+} |