2023-10-21 15:11:05 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "chapter_interface.h"
|
|
|
|
|
|
|
|
class StructuredBindingTest : public ChapterTest {
|
|
|
|
public:
|
|
|
|
virtual void run() override;
|
2023-10-21 19:29:36 +00:00
|
|
|
virtual const char *name() const override {
|
|
|
|
return "Structured binding test";
|
|
|
|
}
|
2023-10-21 15:11:05 +00:00
|
|
|
};
|