2023-10-18 18:29:41 +00:00
|
|
|
#pragma once
|
|
|
|
|
2023-10-21 10:31:23 +00:00
|
|
|
#include "chapter_interface.h"
|
|
|
|
|
|
|
|
class ConstExpTest : public ChapterTest {
|
|
|
|
public:
|
2023-10-21 14:44:06 +00:00
|
|
|
virtual void run() override;
|
2023-10-21 19:29:36 +00:00
|
|
|
virtual const char *name() const override { return "Constexpr test"; }
|
2023-10-18 18:29:41 +00:00
|
|
|
};
|