(snippet) {
	header {
		{blocks.foo}
	}
	header {
		{blocks.bar}
	}
}

example.com {
	import snippet {
		foo {
			foo a
		}
		bar {
			bar b
		}
	}
}
----------
{
	"apps": {
		"http": {
			"servers": {
				"srv0": {
					"listen": [
						":443"
					],
					"routes": [
						{
							"match": [
								{
									"host": [
										"example.com"
									]
								}
							],
							"handle": [
								{
									"handler": "subroute",
									"routes": [
										{
											"handle": [
												{
													"handler": "headers",
													"response": {
														"set": {
															"Foo": [
																"a"
															]
														}
													}
												},
												{
													"handler": "headers",
													"response": {
														"set": {
															"Bar": [
																"b"
															]
														}
													}
												}
											]
										}
									]
								}
							],
							"terminal": true
						}
					]
				}
			}
		}
	}
}