1load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
2
3# Some comment to be preserved
4
5filegroup(
6 name = "allfiles",
7 srcs = glob(["**"]),
8)
9
10bzl_library(
11 name = "foo",
12 srcs = ["foo.bzl"],
13 visibility = ["//visibility:public"],
14)
15