xref: /aosp_15_r20/external/stardoc/test/testdata/local_repository_test/input.bzl (revision b2fa42943c124aa9c7163734493fc7a7559681cf)
1"""A test that verifies documenting functions in an input file under a local_repository."""
2
3load("@io_bazel_stardoc//test/testdata/fakedeps:dep.bzl", "give_me_five")
4
5def min(integers):
6    """Returns the minimum of given elements.
7
8    Args:
9      integers: A list of integers. Must not be empty.
10
11    Returns:
12      The minimum integer in the given list.
13    """
14    _ignore = [integers]  # @unused
15    return give_me_five()
16