diff --git a/index.php b/index.php
index 25219ce..7bff3a5 100644
--- a/index.php
+++ b/index.php
@@ -120,6 +120,11 @@ Route::add('/foo/bar/foo/bar', function() {
echo 'This is the second match (This route should only work in multi match mode)
';
});
+// Route with non english letters
+Route::add('/äöü', function() {
+ echo 'Non english letters should work too
';
+});
+
// Trailing slash example
Route::add('/aTrailingSlashDoesNotMatter', function() {
navi();