error: unexpected absolute path in `package` declaration
  --> testdata/parser/package/absolute.proto:17:9
   |
17 | package .test.test2;
   |         ^^^^^^^^^^^ expected a path without a leading `.`
   |
  help: remove the leading `.`
   |
17 | - package .test.test2;
17 | + package test.test2;
   |

encountered 1 error
