feat: test auto keyword

This commit is contained in:
Michael Mandl 2023-10-21 22:45:28 +02:00
parent b78b86742b
commit 9b20fc7126
Signed by: mandlm
GPG key ID: 4AA25D647AA54CC7
4 changed files with 28 additions and 2 deletions

View file

@ -0,0 +1,9 @@
#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"; }
};