1
0
Fork 0
modern_cpp_tutorial/chapters/chapter_02/include/type_inference.h

10 lines
213 B
C
Raw Normal View History

2023-10-21 20:45:28 +00:00
#pragma once
#include "chapter_interface.h"
class TypeInferenceTest : public ChapterTest {
public:
virtual void run() override;
virtual const char *name() const override { return "Type inference test"; }
};